Libav
msvideo1.c
Go to the documentation of this file.
1 /*
2  * Microsoft Video-1 Decoder
3  * Copyright (C) 2003 the ffmpeg project
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 
34 #include "libavutil/internal.h"
35 #include "libavutil/intreadwrite.h"
36 #include "avcodec.h"
37 #include "internal.h"
38 
39 #define PALETTE_COUNT 256
40 #define CHECK_STREAM_PTR(n) \
41  if ((stream_ptr + n) > s->size ) { \
42  av_log(s->avctx, AV_LOG_ERROR, " MS Video-1 warning: stream_ptr out of bounds (%d >= %d)\n", \
43  stream_ptr + n, s->size); \
44  return; \
45  }
46 
47 typedef struct Msvideo1Context {
48 
51 
52  const unsigned char *buf;
53  int size;
54 
55  int mode_8bit; /* if it's not 8-bit, it's 16-bit */
56 
57  uint32_t pal[256];
59 
61 {
62  Msvideo1Context *s = avctx->priv_data;
63 
64  s->avctx = avctx;
65 
66  /* figure out the colorspace based on the presence of a palette */
67  if (s->avctx->bits_per_coded_sample == 8) {
68  s->mode_8bit = 1;
69  avctx->pix_fmt = AV_PIX_FMT_PAL8;
70  } else {
71  s->mode_8bit = 0;
72  avctx->pix_fmt = AV_PIX_FMT_RGB555;
73  }
74 
75  s->frame = av_frame_alloc();
76  if (!s->frame)
77  return AVERROR(ENOMEM);
78 
79  return 0;
80 }
81 
83 {
84  int block_ptr, pixel_ptr;
85  int total_blocks;
86  int pixel_x, pixel_y; /* pixel width and height iterators */
87  int block_x, block_y; /* block width and height iterators */
88  int blocks_wide, blocks_high; /* width and height in 4x4 blocks */
89  int block_inc;
90  int row_dec;
91 
92  /* decoding parameters */
93  int stream_ptr;
94  unsigned char byte_a, byte_b;
95  unsigned short flags;
96  int skip_blocks;
97  unsigned char colors[8];
98  unsigned char *pixels = s->frame->data[0];
99  int stride = s->frame->linesize[0];
100 
101  stream_ptr = 0;
102  skip_blocks = 0;
103  blocks_wide = s->avctx->width / 4;
104  blocks_high = s->avctx->height / 4;
105  total_blocks = blocks_wide * blocks_high;
106  block_inc = 4;
107  row_dec = stride + 4;
108 
109  for (block_y = blocks_high; block_y > 0; block_y--) {
110  block_ptr = ((block_y * 4) - 1) * stride;
111  for (block_x = blocks_wide; block_x > 0; block_x--) {
112  /* check if this block should be skipped */
113  if (skip_blocks) {
114  block_ptr += block_inc;
115  skip_blocks--;
116  total_blocks--;
117  continue;
118  }
119 
120  pixel_ptr = block_ptr;
121 
122  /* get the next two bytes in the encoded data stream */
123  CHECK_STREAM_PTR(2);
124  byte_a = s->buf[stream_ptr++];
125  byte_b = s->buf[stream_ptr++];
126 
127  /* check if the decode is finished */
128  if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0))
129  return;
130  else if ((byte_b & 0xFC) == 0x84) {
131  /* skip code, but don't count the current block */
132  skip_blocks = ((byte_b - 0x84) << 8) + byte_a - 1;
133  } else if (byte_b < 0x80) {
134  /* 2-color encoding */
135  flags = (byte_b << 8) | byte_a;
136 
137  CHECK_STREAM_PTR(2);
138  colors[0] = s->buf[stream_ptr++];
139  colors[1] = s->buf[stream_ptr++];
140 
141  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
142  for (pixel_x = 0; pixel_x < 4; pixel_x++, flags >>= 1)
143  pixels[pixel_ptr++] = colors[(flags & 0x1) ^ 1];
144  pixel_ptr -= row_dec;
145  }
146  } else if (byte_b >= 0x90) {
147  /* 8-color encoding */
148  flags = (byte_b << 8) | byte_a;
149 
150  CHECK_STREAM_PTR(8);
151  memcpy(colors, &s->buf[stream_ptr], 8);
152  stream_ptr += 8;
153 
154  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
155  for (pixel_x = 0; pixel_x < 4; pixel_x++, flags >>= 1)
156  pixels[pixel_ptr++] =
157  colors[((pixel_y & 0x2) << 1) +
158  (pixel_x & 0x2) + ((flags & 0x1) ^ 1)];
159  pixel_ptr -= row_dec;
160  }
161  } else {
162  /* 1-color encoding */
163  colors[0] = byte_a;
164 
165  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
166  for (pixel_x = 0; pixel_x < 4; pixel_x++)
167  pixels[pixel_ptr++] = colors[0];
168  pixel_ptr -= row_dec;
169  }
170  }
171 
172  block_ptr += block_inc;
173  total_blocks--;
174  }
175  }
176 
177  /* make the palette available on the way out */
178  if (s->avctx->pix_fmt == AV_PIX_FMT_PAL8)
179  memcpy(s->frame->data[1], s->pal, AVPALETTE_SIZE);
180 }
181 
183 {
184  int block_ptr, pixel_ptr;
185  int total_blocks;
186  int pixel_x, pixel_y; /* pixel width and height iterators */
187  int block_x, block_y; /* block width and height iterators */
188  int blocks_wide, blocks_high; /* width and height in 4x4 blocks */
189  int block_inc;
190  int row_dec;
191 
192  /* decoding parameters */
193  int stream_ptr;
194  unsigned char byte_a, byte_b;
195  unsigned short flags;
196  int skip_blocks;
197  unsigned short colors[8];
198  unsigned short *pixels = (unsigned short *)s->frame->data[0];
199  int stride = s->frame->linesize[0] / 2;
200 
201  stream_ptr = 0;
202  skip_blocks = 0;
203  blocks_wide = s->avctx->width / 4;
204  blocks_high = s->avctx->height / 4;
205  total_blocks = blocks_wide * blocks_high;
206  block_inc = 4;
207  row_dec = stride + 4;
208 
209  for (block_y = blocks_high; block_y > 0; block_y--) {
210  block_ptr = ((block_y * 4) - 1) * stride;
211  for (block_x = blocks_wide; block_x > 0; block_x--) {
212  /* check if this block should be skipped */
213  if (skip_blocks) {
214  block_ptr += block_inc;
215  skip_blocks--;
216  total_blocks--;
217  continue;
218  }
219 
220  pixel_ptr = block_ptr;
221 
222  /* get the next two bytes in the encoded data stream */
223  CHECK_STREAM_PTR(2);
224  byte_a = s->buf[stream_ptr++];
225  byte_b = s->buf[stream_ptr++];
226 
227  /* check if the decode is finished */
228  if ((byte_a == 0) && (byte_b == 0) && (total_blocks == 0)) {
229  return;
230  } else if ((byte_b & 0xFC) == 0x84) {
231  /* skip code, but don't count the current block */
232  skip_blocks = ((byte_b - 0x84) << 8) + byte_a - 1;
233  } else if (byte_b < 0x80) {
234  /* 2- or 8-color encoding modes */
235  flags = (byte_b << 8) | byte_a;
236 
237  CHECK_STREAM_PTR(4);
238  colors[0] = AV_RL16(&s->buf[stream_ptr]);
239  stream_ptr += 2;
240  colors[1] = AV_RL16(&s->buf[stream_ptr]);
241  stream_ptr += 2;
242 
243  if (colors[0] & 0x8000) {
244  /* 8-color encoding */
245  CHECK_STREAM_PTR(12);
246  colors[2] = AV_RL16(&s->buf[stream_ptr]);
247  stream_ptr += 2;
248  colors[3] = AV_RL16(&s->buf[stream_ptr]);
249  stream_ptr += 2;
250  colors[4] = AV_RL16(&s->buf[stream_ptr]);
251  stream_ptr += 2;
252  colors[5] = AV_RL16(&s->buf[stream_ptr]);
253  stream_ptr += 2;
254  colors[6] = AV_RL16(&s->buf[stream_ptr]);
255  stream_ptr += 2;
256  colors[7] = AV_RL16(&s->buf[stream_ptr]);
257  stream_ptr += 2;
258 
259  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
260  for (pixel_x = 0; pixel_x < 4; pixel_x++, flags >>= 1)
261  pixels[pixel_ptr++] =
262  colors[((pixel_y & 0x2) << 1) +
263  (pixel_x & 0x2) + ((flags & 0x1) ^ 1)];
264  pixel_ptr -= row_dec;
265  }
266  } else {
267  /* 2-color encoding */
268  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
269  for (pixel_x = 0; pixel_x < 4; pixel_x++, flags >>= 1)
270  pixels[pixel_ptr++] = colors[(flags & 0x1) ^ 1];
271  pixel_ptr -= row_dec;
272  }
273  }
274  } else {
275  /* otherwise, it's a 1-color block */
276  colors[0] = (byte_b << 8) | byte_a;
277 
278  for (pixel_y = 0; pixel_y < 4; pixel_y++) {
279  for (pixel_x = 0; pixel_x < 4; pixel_x++)
280  pixels[pixel_ptr++] = colors[0];
281  pixel_ptr -= row_dec;
282  }
283  }
284 
285  block_ptr += block_inc;
286  total_blocks--;
287  }
288  }
289 }
290 
292  void *data, int *got_frame,
293  AVPacket *avpkt)
294 {
295  const uint8_t *buf = avpkt->data;
296  int buf_size = avpkt->size;
297  Msvideo1Context *s = avctx->priv_data;
298  int ret;
299 
300  s->buf = buf;
301  s->size = buf_size;
302 
303  if ((ret = ff_reget_buffer(avctx, s->frame)) < 0) {
304  av_log(s->avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
305  return ret;
306  }
307 
308  if (s->mode_8bit) {
310 
311  if (pal) {
312  memcpy(s->pal, pal, AVPALETTE_SIZE);
313  s->frame->palette_has_changed = 1;
314  }
315  }
316 
317  if (s->mode_8bit)
319  else
321 
322  if ((ret = av_frame_ref(data, s->frame)) < 0)
323  return ret;
324 
325  *got_frame = 1;
326 
327  /* report that the buffer was completely consumed */
328  return buf_size;
329 }
330 
332 {
333  Msvideo1Context *s = avctx->priv_data;
334 
335  av_frame_free(&s->frame);
336 
337  return 0;
338 }
339 
341  .name = "msvideo1",
342  .long_name = NULL_IF_CONFIG_SMALL("Microsoft Video 1"),
343  .type = AVMEDIA_TYPE_VIDEO,
344  .id = AV_CODEC_ID_MSVIDEO1,
345  .priv_data_size = sizeof(Msvideo1Context),
349  .capabilities = CODEC_CAP_DR1,
350 };
#define AVPALETTE_SIZE
Definition: avcodec.h:3035
uint32_t pal[256]
Definition: msvideo1.c:57
static int msvideo1_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: msvideo1.c:291
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
AVCodecContext * avctx
Definition: msvideo1.c:49
int size
Definition: avcodec.h:974
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1254
#define AV_RL16
Definition: intreadwrite.h:42
int stride
Definition: mace.c:144
AVCodec.
Definition: avcodec.h:2796
static int decode(MimicContext *ctx, int quality, int num_coeffs, int is_iframe)
Definition: mimic.c:275
static av_cold int msvideo1_decode_end(AVCodecContext *avctx)
Definition: msvideo1.c:331
uint8_t
#define av_cold
Definition: attributes.h:66
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:57
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:76
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
Definition: frame.c:188
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:684
const char data[16]
Definition: mxf.c:70
uint8_t * data
Definition: avcodec.h:973
static int flags
Definition: log.c:44
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
Definition: avcodec.h:2507
const unsigned char * buf
Definition: msvideo1.c:52
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:69
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:150
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:168
const char * name
Name of the codec implementation.
Definition: avcodec.h:2803
AVCodec ff_msvideo1_decoder
Definition: msvideo1.c:340
static void msvideo1_decode_16bit(Msvideo1Context *s)
Definition: msvideo1.c:182
common internal API header
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
Definition: utils.c:808
int width
picture width / height.
Definition: avcodec.h:1224
NULL
Definition: eval.c:55
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:153
main external API structure.
Definition: avcodec.h:1050
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:490
int palette_has_changed
Tell user application that palette has changed from previous frame.
Definition: frame.h:330
static void msvideo1_decode_8bit(Msvideo1Context *s)
Definition: msvideo1.c:82
#define CHECK_STREAM_PTR(n)
Definition: msvideo1.c:40
AVFrame * frame
Definition: msvideo1.c:50
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
static av_cold int msvideo1_decode_init(AVCodecContext *avctx)
Definition: msvideo1.c:60
common internal api header.
#define AV_PIX_FMT_RGB555
Definition: pixfmt.h:231
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
void * priv_data
Definition: avcodec.h:1092
uint8_t * av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
Definition: avpacket.c:287
This structure stores compressed data.
Definition: avcodec.h:950
for(j=16;j >0;--j)