]> git.sesse.net Git - ffmpeg/blob - libavcodec/mss2.c
Hap decoder and encoder
[ffmpeg] / libavcodec / mss2.c
1 /*
2  * Microsoft Screen 2 (aka Windows Media Video V9 Screen) decoder
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * Microsoft Screen 2 (aka Windows Media Video V9 Screen) decoder
24  */
25
26 #include "libavutil/avassert.h"
27 #include "error_resilience.h"
28 #include "internal.h"
29 #include "mpeg_er.h"
30 #include "msmpeg4.h"
31 #include "msmpeg4data.h"
32 #include "qpeldsp.h"
33 #include "vc1.h"
34 #include "mss12.h"
35 #include "mss2dsp.h"
36
37 typedef struct MSS2Context {
38     VC1Context     v;
39     int            split_position;
40     AVFrame       *last_pic;
41     MSS12Context   c;
42     MSS2DSPContext dsp;
43     QpelDSPContext qdsp;
44     SliceContext   sc[2];
45 } MSS2Context;
46
47 static void arith2_normalise(ArithCoder *c)
48 {
49     while ((c->high >> 15) - (c->low >> 15) < 2) {
50         if ((c->low ^ c->high) & 0x10000) {
51             c->high  ^= 0x8000;
52             c->value ^= 0x8000;
53             c->low   ^= 0x8000;
54         }
55         c->high  = c->high  << 8 & 0xFFFFFF | 0xFF;
56         c->value = c->value << 8 & 0xFFFFFF | bytestream2_get_byte(c->gbc.gB);
57         c->low   = c->low   << 8 & 0xFFFFFF;
58     }
59 }
60
61 ARITH_GET_BIT(2)
62
63 /* L. Stuiver and A. Moffat: "Piecewise Integer Mapping for Arithmetic Coding."
64  * In Proc. 8th Data Compression Conference (DCC '98), pp. 3-12, Mar. 1998 */
65
66 static int arith2_get_scaled_value(int value, int n, int range)
67 {
68     int split = (n << 1) - range;
69
70     if (value > split)
71         return split + (value - split >> 1);
72     else
73         return value;
74 }
75
76 static void arith2_rescale_interval(ArithCoder *c, int range,
77                                     int low, int high, int n)
78 {
79     int split = (n << 1) - range;
80
81     if (high > split)
82         c->high = split + (high - split << 1);
83     else
84         c->high = high;
85
86     c->high += c->low - 1;
87
88     if (low > split)
89         c->low += split + (low - split << 1);
90     else
91         c->low += low;
92 }
93
94 static int arith2_get_number(ArithCoder *c, int n)
95 {
96     int range = c->high - c->low + 1;
97     int scale = av_log2(range) - av_log2(n);
98     int val;
99
100     if (n << scale > range)
101         scale--;
102
103     n <<= scale;
104
105     val = arith2_get_scaled_value(c->value - c->low, n, range) >> scale;
106
107     arith2_rescale_interval(c, range, val << scale, (val + 1) << scale, n);
108
109     arith2_normalise(c);
110
111     return val;
112 }
113
114 static int arith2_get_prob(ArithCoder *c, int16_t *probs)
115 {
116     int range = c->high - c->low + 1, n = *probs;
117     int scale = av_log2(range) - av_log2(n);
118     int i     = 0, val;
119
120     if (n << scale > range)
121         scale--;
122
123     n <<= scale;
124
125     val = arith2_get_scaled_value(c->value - c->low, n, range) >> scale;
126     while (probs[++i] > val) ;
127
128     arith2_rescale_interval(c, range,
129                             probs[i] << scale, probs[i - 1] << scale, n);
130
131     return i;
132 }
133
134 ARITH_GET_MODEL_SYM(2)
135
136 static int arith2_get_consumed_bytes(ArithCoder *c)
137 {
138     int diff = (c->high >> 16) - (c->low >> 16);
139     int bp   = bytestream2_tell(c->gbc.gB) - 3 << 3;
140     int bits = 1;
141
142     while (!(diff & 0x80)) {
143         bits++;
144         diff <<= 1;
145     }
146
147     return (bits + bp + 7 >> 3) + ((c->low >> 16) + 1 == c->high >> 16);
148 }
149
150 static void arith2_init(ArithCoder *c, GetByteContext *gB)
151 {
152     c->low           = 0;
153     c->high          = 0xFFFFFF;
154     c->value         = bytestream2_get_be24(gB);
155     c->gbc.gB        = gB;
156     c->get_model_sym = arith2_get_model_sym;
157     c->get_number    = arith2_get_number;
158 }
159
160 static int decode_pal_v2(MSS12Context *ctx, const uint8_t *buf, int buf_size)
161 {
162     int i, ncol;
163     uint32_t *pal = ctx->pal + 256 - ctx->free_colours;
164
165     if (!ctx->free_colours)
166         return 0;
167
168     ncol = *buf++;
169     if (ncol > ctx->free_colours || buf_size < 2 + ncol * 3)
170         return AVERROR_INVALIDDATA;
171     for (i = 0; i < ncol; i++)
172         *pal++ = AV_RB24(buf + 3 * i);
173
174     return 1 + ncol * 3;
175 }
176
177 static int decode_555(GetByteContext *gB, uint16_t *dst, int stride,
178                       int keyframe, int w, int h)
179 {
180     int last_symbol = 0, repeat = 0, prev_avail = 0;
181
182     if (!keyframe) {
183         int x, y, endx, endy, t;
184
185 #define READ_PAIR(a, b)                 \
186     a  = bytestream2_get_byte(gB) << 4; \
187     t  = bytestream2_get_byte(gB);      \
188     a |= t >> 4;                        \
189     b  = (t & 0xF) << 8;                \
190     b |= bytestream2_get_byte(gB);      \
191
192         READ_PAIR(x, endx)
193         READ_PAIR(y, endy)
194
195         if (endx >= w || endy >= h || x > endx || y > endy)
196             return AVERROR_INVALIDDATA;
197         dst += x + stride * y;
198         w    = endx - x + 1;
199         h    = endy - y + 1;
200         if (y)
201             prev_avail = 1;
202     }
203
204     do {
205         uint16_t *p = dst;
206         do {
207             if (repeat-- < 1) {
208                 int b = bytestream2_get_byte(gB);
209                 if (b < 128)
210                     last_symbol = b << 8 | bytestream2_get_byte(gB);
211                 else if (b > 129) {
212                     repeat = 0;
213                     while (b-- > 130)
214                         repeat = (repeat << 8) + bytestream2_get_byte(gB) + 1;
215                     if (last_symbol == -2) {
216                         int skip = FFMIN((unsigned)repeat, dst + w - p);
217                         repeat -= skip;
218                         p      += skip;
219                     }
220                 } else
221                     last_symbol = 127 - b;
222             }
223             if (last_symbol >= 0)
224                 *p = last_symbol;
225             else if (last_symbol == -1 && prev_avail)
226                 *p = *(p - stride);
227         } while (++p < dst + w);
228         dst       += stride;
229         prev_avail = 1;
230     } while (--h);
231
232     return 0;
233 }
234
235 static int decode_rle(GetBitContext *gb, uint8_t *pal_dst, int pal_stride,
236                       uint8_t *rgb_dst, int rgb_stride, uint32_t *pal,
237                       int keyframe, int kf_slipt, int slice, int w, int h)
238 {
239     uint8_t bits[270] = { 0 };
240     uint32_t codes[270];
241     VLC vlc;
242
243     int current_length = 0, read_codes = 0, next_code = 0, current_codes = 0;
244     int remaining_codes, surplus_codes, i;
245
246     const int alphabet_size = 270 - keyframe;
247
248     int last_symbol = 0, repeat = 0, prev_avail = 0;
249
250     if (!keyframe) {
251         int x, y, clipw, cliph;
252
253         x     = get_bits(gb, 12);
254         y     = get_bits(gb, 12);
255         clipw = get_bits(gb, 12) + 1;
256         cliph = get_bits(gb, 12) + 1;
257
258         if (x + clipw > w || y + cliph > h)
259             return AVERROR_INVALIDDATA;
260         pal_dst += pal_stride * y + x;
261         rgb_dst += rgb_stride * y + x * 3;
262         w        = clipw;
263         h        = cliph;
264         if (y)
265             prev_avail = 1;
266     } else {
267         if (slice > 0) {
268             pal_dst   += pal_stride * kf_slipt;
269             rgb_dst   += rgb_stride * kf_slipt;
270             prev_avail = 1;
271             h         -= kf_slipt;
272         } else
273             h = kf_slipt;
274     }
275
276     /* read explicit codes */
277     do {
278         while (current_codes--) {
279             int symbol = get_bits(gb, 8);
280             if (symbol >= 204 - keyframe)
281                 symbol += 14 - keyframe;
282             else if (symbol > 189)
283                 symbol = get_bits1(gb) + (symbol << 1) - 190;
284             if (bits[symbol])
285                 return AVERROR_INVALIDDATA;
286             bits[symbol]  = current_length;
287             codes[symbol] = next_code++;
288             read_codes++;
289         }
290         current_length++;
291         next_code     <<= 1;
292         remaining_codes = (1 << current_length) - next_code;
293         current_codes   = get_bits(gb, av_ceil_log2(remaining_codes + 1));
294         if (current_length > 22 || current_codes > remaining_codes)
295             return AVERROR_INVALIDDATA;
296     } while (current_codes != remaining_codes);
297
298     remaining_codes = alphabet_size - read_codes;
299
300     /* determine the minimum length to fit the rest of the alphabet */
301     while ((surplus_codes = (2 << current_length) -
302                             (next_code << 1) - remaining_codes) < 0) {
303         current_length++;
304         next_code <<= 1;
305     }
306
307     /* add the rest of the symbols lexicographically */
308     for (i = 0; i < alphabet_size; i++)
309         if (!bits[i]) {
310             if (surplus_codes-- == 0) {
311                 current_length++;
312                 next_code <<= 1;
313             }
314             bits[i]  = current_length;
315             codes[i] = next_code++;
316         }
317
318     if (next_code != 1 << current_length)
319         return AVERROR_INVALIDDATA;
320
321     if (i = init_vlc(&vlc, 9, alphabet_size, bits, 1, 1, codes, 4, 4, 0))
322         return i;
323
324     /* frame decode */
325     do {
326         uint8_t *pp = pal_dst;
327         uint8_t *rp = rgb_dst;
328         do {
329             if (repeat-- < 1) {
330                 int b = get_vlc2(gb, vlc.table, 9, 3);
331                 if (b < 256)
332                     last_symbol = b;
333                 else if (b < 268) {
334                     b -= 256;
335                     if (b == 11)
336                         b = get_bits(gb, 4) + 10;
337
338                     if (!b)
339                         repeat = 0;
340                     else
341                         repeat = get_bits(gb, b);
342
343                     repeat += (1 << b) - 1;
344
345                     if (last_symbol == -2) {
346                         int skip = FFMIN(repeat, pal_dst + w - pp);
347                         repeat -= skip;
348                         pp     += skip;
349                         rp     += skip * 3;
350                     }
351                 } else
352                     last_symbol = 267 - b;
353             }
354             if (last_symbol >= 0) {
355                 *pp = last_symbol;
356                 AV_WB24(rp, pal[last_symbol]);
357             } else if (last_symbol == -1 && prev_avail) {
358                 *pp = *(pp - pal_stride);
359                 memcpy(rp, rp - rgb_stride, 3);
360             }
361             rp += 3;
362         } while (++pp < pal_dst + w);
363         pal_dst   += pal_stride;
364         rgb_dst   += rgb_stride;
365         prev_avail = 1;
366     } while (--h);
367
368     ff_free_vlc(&vlc);
369     return 0;
370 }
371
372 static int decode_wmv9(AVCodecContext *avctx, const uint8_t *buf, int buf_size,
373                        int x, int y, int w, int h, int wmv9_mask)
374 {
375     MSS2Context *ctx  = avctx->priv_data;
376     MSS12Context *c   = &ctx->c;
377     VC1Context *v     = avctx->priv_data;
378     MpegEncContext *s = &v->s;
379     AVFrame *f;
380     int ret;
381
382     ff_mpeg_flush(avctx);
383
384     init_get_bits(&s->gb, buf, buf_size * 8);
385
386     s->loop_filter = avctx->skip_loop_filter < AVDISCARD_ALL;
387
388     if (ff_vc1_parse_frame_header(v, &s->gb) < 0) {
389         av_log(v->s.avctx, AV_LOG_ERROR, "header error\n");
390         return AVERROR_INVALIDDATA;
391     }
392
393     if (s->pict_type != AV_PICTURE_TYPE_I) {
394         av_log(v->s.avctx, AV_LOG_ERROR, "expected I-frame\n");
395         return AVERROR_INVALIDDATA;
396     }
397
398     avctx->pix_fmt = AV_PIX_FMT_YUV420P;
399
400     if ((ret = ff_mpv_frame_start(s, avctx)) < 0) {
401         av_log(v->s.avctx, AV_LOG_ERROR, "ff_mpv_frame_start error\n");
402         avctx->pix_fmt = AV_PIX_FMT_RGB24;
403         return ret;
404     }
405
406     ff_mpeg_er_frame_start(s);
407
408     v->bits = buf_size * 8;
409
410     v->end_mb_x = (w + 15) >> 4;
411     s->end_mb_y = (h + 15) >> 4;
412     if (v->respic & 1)
413         v->end_mb_x = v->end_mb_x + 1 >> 1;
414     if (v->respic & 2)
415         s->end_mb_y = s->end_mb_y + 1 >> 1;
416
417     ff_vc1_decode_blocks(v);
418
419     ff_er_frame_end(&s->er);
420
421     ff_mpv_frame_end(s);
422
423     f = s->current_picture.f;
424
425     if (v->respic == 3) {
426         ctx->dsp.upsample_plane(f->data[0], f->linesize[0], w,      h);
427         ctx->dsp.upsample_plane(f->data[1], f->linesize[1], w >> 1, h >> 1);
428         ctx->dsp.upsample_plane(f->data[2], f->linesize[2], w >> 1, h >> 1);
429     } else if (v->respic)
430         avpriv_request_sample(v->s.avctx,
431                               "Asymmetric WMV9 rectangle subsampling");
432
433     av_assert0(f->linesize[1] == f->linesize[2]);
434
435     if (wmv9_mask != -1)
436         ctx->dsp.mss2_blit_wmv9_masked(c->rgb_pic + y * c->rgb_stride + x * 3,
437                                        c->rgb_stride, wmv9_mask,
438                                        c->pal_pic + y * c->pal_stride + x,
439                                        c->pal_stride,
440                                        f->data[0], f->linesize[0],
441                                        f->data[1], f->data[2], f->linesize[1],
442                                        w, h);
443     else
444         ctx->dsp.mss2_blit_wmv9(c->rgb_pic + y * c->rgb_stride + x * 3,
445                                 c->rgb_stride,
446                                 f->data[0], f->linesize[0],
447                                 f->data[1], f->data[2], f->linesize[1],
448                                 w, h);
449
450     avctx->pix_fmt = AV_PIX_FMT_RGB24;
451
452     return 0;
453 }
454
455 typedef struct Rectangle {
456     int coded, x, y, w, h;
457 } Rectangle;
458
459 #define MAX_WMV9_RECTANGLES 20
460 #define ARITH2_PADDING 2
461
462 static int mss2_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
463                              AVPacket *avpkt)
464 {
465     const uint8_t *buf = avpkt->data;
466     int buf_size       = avpkt->size;
467     MSS2Context *ctx = avctx->priv_data;
468     MSS12Context *c  = &ctx->c;
469     AVFrame *frame   = data;
470     GetBitContext gb;
471     GetByteContext gB;
472     ArithCoder acoder;
473
474     int keyframe, has_wmv9, has_mv, is_rle, is_555, ret;
475
476     Rectangle wmv9rects[MAX_WMV9_RECTANGLES], *r;
477     int used_rects = 0, i, implicit_rect = 0, av_uninit(wmv9_mask);
478
479     av_assert0(FF_INPUT_BUFFER_PADDING_SIZE >=
480                ARITH2_PADDING + (MIN_CACHE_BITS + 7) / 8);
481
482     init_get_bits(&gb, buf, buf_size * 8);
483
484     if (keyframe = get_bits1(&gb))
485         skip_bits(&gb, 7);
486     has_wmv9 = get_bits1(&gb);
487     has_mv   = keyframe ? 0 : get_bits1(&gb);
488     is_rle   = get_bits1(&gb);
489     is_555   = is_rle && get_bits1(&gb);
490     if (c->slice_split > 0)
491         ctx->split_position = c->slice_split;
492     else if (c->slice_split < 0) {
493         if (get_bits1(&gb)) {
494             if (get_bits1(&gb)) {
495                 if (get_bits1(&gb))
496                     ctx->split_position = get_bits(&gb, 16);
497                 else
498                     ctx->split_position = get_bits(&gb, 12);
499             } else
500                 ctx->split_position = get_bits(&gb, 8) << 4;
501         } else {
502             if (keyframe)
503                 ctx->split_position = avctx->height / 2;
504         }
505     } else
506         ctx->split_position = avctx->height;
507
508     if (c->slice_split && (ctx->split_position < 1 - is_555 ||
509                            ctx->split_position > avctx->height - 1))
510         return AVERROR_INVALIDDATA;
511
512     align_get_bits(&gb);
513     buf      += get_bits_count(&gb) >> 3;
514     buf_size -= get_bits_count(&gb) >> 3;
515
516     if (buf_size < 1)
517         return AVERROR_INVALIDDATA;
518
519     if (is_555 && (has_wmv9 || has_mv || c->slice_split && ctx->split_position))
520         return AVERROR_INVALIDDATA;
521
522     avctx->pix_fmt = is_555 ? AV_PIX_FMT_RGB555 : AV_PIX_FMT_RGB24;
523     if (ctx->last_pic->format != avctx->pix_fmt)
524         av_frame_unref(ctx->last_pic);
525
526     if (has_wmv9) {
527         bytestream2_init(&gB, buf, buf_size + ARITH2_PADDING);
528         arith2_init(&acoder, &gB);
529
530         implicit_rect = !arith2_get_bit(&acoder);
531
532         while (arith2_get_bit(&acoder)) {
533             if (used_rects == MAX_WMV9_RECTANGLES)
534                 return AVERROR_INVALIDDATA;
535             r = &wmv9rects[used_rects];
536             if (!used_rects)
537                 r->x = arith2_get_number(&acoder, avctx->width);
538             else
539                 r->x = arith2_get_number(&acoder, avctx->width -
540                                          wmv9rects[used_rects - 1].x) +
541                        wmv9rects[used_rects - 1].x;
542             r->y = arith2_get_number(&acoder, avctx->height);
543             r->w = arith2_get_number(&acoder, avctx->width  - r->x) + 1;
544             r->h = arith2_get_number(&acoder, avctx->height - r->y) + 1;
545             used_rects++;
546         }
547
548         if (implicit_rect && used_rects) {
549             av_log(avctx, AV_LOG_ERROR, "implicit_rect && used_rects > 0\n");
550             return AVERROR_INVALIDDATA;
551         }
552
553         if (implicit_rect) {
554             wmv9rects[0].x = 0;
555             wmv9rects[0].y = 0;
556             wmv9rects[0].w = avctx->width;
557             wmv9rects[0].h = avctx->height;
558
559             used_rects = 1;
560         }
561         for (i = 0; i < used_rects; i++) {
562             if (!implicit_rect && arith2_get_bit(&acoder)) {
563                 av_log(avctx, AV_LOG_ERROR, "Unexpected grandchildren\n");
564                 return AVERROR_INVALIDDATA;
565             }
566             if (!i) {
567                 wmv9_mask = arith2_get_bit(&acoder) - 1;
568                 if (!wmv9_mask)
569                     wmv9_mask = arith2_get_number(&acoder, 256);
570             }
571             wmv9rects[i].coded = arith2_get_number(&acoder, 2);
572         }
573
574         buf      += arith2_get_consumed_bytes(&acoder);
575         buf_size -= arith2_get_consumed_bytes(&acoder);
576         if (buf_size < 1)
577             return AVERROR_INVALIDDATA;
578     }
579
580     c->mvX = c->mvY = 0;
581     if (keyframe && !is_555) {
582         if ((i = decode_pal_v2(c, buf, buf_size)) < 0)
583             return AVERROR_INVALIDDATA;
584         buf      += i;
585         buf_size -= i;
586     } else if (has_mv) {
587         buf      += 4;
588         buf_size -= 4;
589         if (buf_size < 1)
590             return AVERROR_INVALIDDATA;
591         c->mvX = AV_RB16(buf - 4) - avctx->width;
592         c->mvY = AV_RB16(buf - 2) - avctx->height;
593     }
594
595     if (c->mvX < 0 || c->mvY < 0) {
596         FFSWAP(uint8_t *, c->pal_pic, c->last_pal_pic);
597
598         if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) {
599             av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
600             return ret;
601         }
602
603         if (ctx->last_pic->data[0]) {
604             av_assert0(frame->linesize[0] == ctx->last_pic->linesize[0]);
605             c->last_rgb_pic = ctx->last_pic->data[0] +
606                               ctx->last_pic->linesize[0] * (avctx->height - 1);
607         } else {
608             av_log(avctx, AV_LOG_ERROR, "Missing keyframe\n");
609             return AVERROR_INVALIDDATA;
610         }
611     } else {
612         if ((ret = ff_reget_buffer(avctx, ctx->last_pic)) < 0) {
613             av_log(avctx, AV_LOG_ERROR, "reget_buffer() failed\n");
614             return ret;
615         }
616         if ((ret = av_frame_ref(frame, ctx->last_pic)) < 0)
617             return ret;
618
619         c->last_rgb_pic = NULL;
620     }
621     c->rgb_pic    = frame->data[0] +
622                     frame->linesize[0] * (avctx->height - 1);
623     c->rgb_stride = -frame->linesize[0];
624
625     frame->key_frame = keyframe;
626     frame->pict_type = keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
627
628     if (is_555) {
629         bytestream2_init(&gB, buf, buf_size);
630
631         if (decode_555(&gB, (uint16_t *)c->rgb_pic, c->rgb_stride >> 1,
632                        keyframe, avctx->width, avctx->height))
633             return AVERROR_INVALIDDATA;
634
635         buf_size -= bytestream2_tell(&gB);
636     } else {
637         if (keyframe) {
638             c->corrupted = 0;
639             ff_mss12_slicecontext_reset(&ctx->sc[0]);
640             if (c->slice_split)
641                 ff_mss12_slicecontext_reset(&ctx->sc[1]);
642         }
643         if (is_rle) {
644             init_get_bits(&gb, buf, buf_size * 8);
645             if (ret = decode_rle(&gb, c->pal_pic, c->pal_stride,
646                                  c->rgb_pic, c->rgb_stride, c->pal, keyframe,
647                                  ctx->split_position, 0,
648                                  avctx->width, avctx->height))
649                 return ret;
650             align_get_bits(&gb);
651
652             if (c->slice_split)
653                 if (ret = decode_rle(&gb, c->pal_pic, c->pal_stride,
654                                      c->rgb_pic, c->rgb_stride, c->pal, keyframe,
655                                      ctx->split_position, 1,
656                                      avctx->width, avctx->height))
657                     return ret;
658
659             align_get_bits(&gb);
660             buf      += get_bits_count(&gb) >> 3;
661             buf_size -= get_bits_count(&gb) >> 3;
662         } else if (!implicit_rect || wmv9_mask != -1) {
663             if (c->corrupted)
664                 return AVERROR_INVALIDDATA;
665             bytestream2_init(&gB, buf, buf_size + ARITH2_PADDING);
666             arith2_init(&acoder, &gB);
667             c->keyframe = keyframe;
668             if (c->corrupted = ff_mss12_decode_rect(&ctx->sc[0], &acoder, 0, 0,
669                                                     avctx->width,
670                                                     ctx->split_position))
671                 return AVERROR_INVALIDDATA;
672
673             buf      += arith2_get_consumed_bytes(&acoder);
674             buf_size -= arith2_get_consumed_bytes(&acoder);
675             if (c->slice_split) {
676                 if (buf_size < 1)
677                     return AVERROR_INVALIDDATA;
678                 bytestream2_init(&gB, buf, buf_size + ARITH2_PADDING);
679                 arith2_init(&acoder, &gB);
680                 if (c->corrupted = ff_mss12_decode_rect(&ctx->sc[1], &acoder, 0,
681                                                         ctx->split_position,
682                                                         avctx->width,
683                                                         avctx->height - ctx->split_position))
684                     return AVERROR_INVALIDDATA;
685
686                 buf      += arith2_get_consumed_bytes(&acoder);
687                 buf_size -= arith2_get_consumed_bytes(&acoder);
688             }
689         } else
690             memset(c->pal_pic, 0, c->pal_stride * avctx->height);
691     }
692
693     if (has_wmv9) {
694         for (i = 0; i < used_rects; i++) {
695             int x = wmv9rects[i].x;
696             int y = wmv9rects[i].y;
697             int w = wmv9rects[i].w;
698             int h = wmv9rects[i].h;
699             if (wmv9rects[i].coded) {
700                 int WMV9codedFrameSize;
701                 if (buf_size < 4 || !(WMV9codedFrameSize = AV_RL24(buf)))
702                     return AVERROR_INVALIDDATA;
703                 if (ret = decode_wmv9(avctx, buf + 3, buf_size - 3,
704                                       x, y, w, h, wmv9_mask))
705                     return ret;
706                 buf      += WMV9codedFrameSize + 3;
707                 buf_size -= WMV9codedFrameSize + 3;
708             } else {
709                 uint8_t *dst = c->rgb_pic + y * c->rgb_stride + x * 3;
710                 if (wmv9_mask != -1) {
711                     ctx->dsp.mss2_gray_fill_masked(dst, c->rgb_stride,
712                                                    wmv9_mask,
713                                                    c->pal_pic + y * c->pal_stride + x,
714                                                    c->pal_stride,
715                                                    w, h);
716                 } else {
717                     do {
718                         memset(dst, 0x80, w * 3);
719                         dst += c->rgb_stride;
720                     } while (--h);
721                 }
722             }
723         }
724     }
725
726     if (buf_size)
727         av_log(avctx, AV_LOG_WARNING, "buffer not fully consumed\n");
728
729     if (c->mvX < 0 || c->mvY < 0) {
730         av_frame_unref(ctx->last_pic);
731         ret = av_frame_ref(ctx->last_pic, frame);
732         if (ret < 0)
733             return ret;
734     }
735
736     *got_frame       = 1;
737
738     return avpkt->size;
739 }
740
741 static av_cold int wmv9_init(AVCodecContext *avctx)
742 {
743     VC1Context *v = avctx->priv_data;
744     int ret;
745
746     v->s.avctx    = avctx;
747
748     if ((ret = ff_vc1_init_common(v)) < 0)
749         return ret;
750     ff_vc1dsp_init(&v->vc1dsp);
751
752     v->profile = PROFILE_MAIN;
753
754     v->zz_8x4     = ff_wmv2_scantableA;
755     v->zz_4x8     = ff_wmv2_scantableB;
756     v->res_y411   = 0;
757     v->res_sprite = 0;
758
759     v->frmrtq_postproc = 7;
760     v->bitrtq_postproc = 31;
761
762     v->res_x8          = 0;
763     v->multires        = 0;
764     v->res_fasttx      = 1;
765
766     v->fastuvmc        = 0;
767
768     v->extended_mv     = 0;
769
770     v->dquant          = 1;
771     v->vstransform     = 1;
772
773     v->res_transtab    = 0;
774
775     v->overlap         = 0;
776
777     v->resync_marker   = 0;
778     v->rangered        = 0;
779
780     v->s.max_b_frames = avctx->max_b_frames = 0;
781     v->quantizer_mode = 0;
782
783     v->finterpflag = 0;
784
785     v->res_rtm_flag = 1;
786
787     ff_vc1_init_transposed_scantables(v);
788
789     if ((ret = ff_msmpeg4_decode_init(avctx)) < 0 ||
790         (ret = ff_vc1_decode_init_alloc_tables(v)) < 0)
791         return ret;
792
793     /* error concealment */
794     v->s.me.qpel_put = v->s.qdsp.put_qpel_pixels_tab;
795     v->s.me.qpel_avg = v->s.qdsp.avg_qpel_pixels_tab;
796
797     return 0;
798 }
799
800 static av_cold int mss2_decode_end(AVCodecContext *avctx)
801 {
802     MSS2Context *const ctx = avctx->priv_data;
803
804     av_frame_free(&ctx->last_pic);
805
806     ff_mss12_decode_end(&ctx->c);
807     av_freep(&ctx->c.pal_pic);
808     av_freep(&ctx->c.last_pal_pic);
809     ff_vc1_decode_end(avctx);
810
811     return 0;
812 }
813
814 static av_cold int mss2_decode_init(AVCodecContext *avctx)
815 {
816     MSS2Context * const ctx = avctx->priv_data;
817     MSS12Context *c = &ctx->c;
818     int ret;
819     c->avctx = avctx;
820     if (ret = ff_mss12_decode_init(c, 1, &ctx->sc[0], &ctx->sc[1]))
821         return ret;
822     c->pal_stride   = c->mask_stride;
823     c->pal_pic      = av_mallocz(c->pal_stride * avctx->height);
824     c->last_pal_pic = av_mallocz(c->pal_stride * avctx->height);
825     if (!c->pal_pic || !c->last_pal_pic) {
826         mss2_decode_end(avctx);
827         return AVERROR(ENOMEM);
828     }
829     if (ret = wmv9_init(avctx)) {
830         mss2_decode_end(avctx);
831         return ret;
832     }
833     ff_mss2dsp_init(&ctx->dsp);
834     ff_qpeldsp_init(&ctx->qdsp);
835
836     avctx->pix_fmt = c->free_colours == 127 ? AV_PIX_FMT_RGB555
837                                             : AV_PIX_FMT_RGB24;
838
839     ctx->last_pic = av_frame_alloc();
840     if (!ctx->last_pic) {
841         mss2_decode_end(avctx);
842         return AVERROR(ENOMEM);
843     }
844
845     return 0;
846 }
847
848 AVCodec ff_mss2_decoder = {
849     .name           = "mss2",
850     .long_name      = NULL_IF_CONFIG_SMALL("MS Windows Media Video V9 Screen"),
851     .type           = AVMEDIA_TYPE_VIDEO,
852     .id             = AV_CODEC_ID_MSS2,
853     .priv_data_size = sizeof(MSS2Context),
854     .init           = mss2_decode_init,
855     .close          = mss2_decode_end,
856     .decode         = mss2_decode_frame,
857     .capabilities   = CODEC_CAP_DR1,
858 };