]> git.sesse.net Git - ffmpeg/blob - libavcodec/diracdec.c
lavfi/paletteuse: fix to support transparency
[ffmpeg] / libavcodec / diracdec.c
1 /*
2  * Copyright (C) 2007 Marco Gerards <marco@gnu.org>
3  * Copyright (C) 2009 David Conrad
4  * Copyright (C) 2011 Jordi Ortiz
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * Dirac Decoder
26  * @author Marco Gerards <marco@gnu.org>, David Conrad, Jordi Ortiz <nenjordi@gmail.com>
27  */
28
29 #include "libavutil/thread.h"
30 #include "avcodec.h"
31 #include "get_bits.h"
32 #include "bytestream.h"
33 #include "internal.h"
34 #include "golomb.h"
35 #include "dirac_arith.h"
36 #include "dirac_vlc.h"
37 #include "mpeg12data.h"
38 #include "libavcodec/mpegvideo.h"
39 #include "mpegvideoencdsp.h"
40 #include "dirac_dwt.h"
41 #include "dirac.h"
42 #include "diractab.h"
43 #include "diracdsp.h"
44 #include "videodsp.h"
45
46 /**
47  * The spec limits this to 3 for frame coding, but in practice can be as high as 6
48  */
49 #define MAX_REFERENCE_FRAMES 8
50 #define MAX_DELAY 5         /* limit for main profile for frame coding (TODO: field coding) */
51 #define MAX_FRAMES (MAX_REFERENCE_FRAMES + MAX_DELAY + 1)
52 #define MAX_QUANT 255        /* max quant for VC-2 */
53 #define MAX_BLOCKSIZE 32    /* maximum xblen/yblen we support */
54
55 /**
56  * DiracBlock->ref flags, if set then the block does MC from the given ref
57  */
58 #define DIRAC_REF_MASK_REF1   1
59 #define DIRAC_REF_MASK_REF2   2
60 #define DIRAC_REF_MASK_GLOBAL 4
61
62 /**
63  * Value of Picture.reference when Picture is not a reference picture, but
64  * is held for delayed output.
65  */
66 #define DELAYED_PIC_REF 4
67
68 #define CALC_PADDING(size, depth)                       \
69     (((size + (1 << depth) - 1) >> depth) << depth)
70
71 #define DIVRNDUP(a, b) (((a) + (b) - 1) / (b))
72
73 typedef struct {
74     AVFrame *avframe;
75     int interpolated[3];    /* 1 if hpel[] is valid */
76     uint8_t *hpel[3][4];
77     uint8_t *hpel_base[3][4];
78     int reference;
79 } DiracFrame;
80
81 typedef struct {
82     union {
83         int16_t mv[2][2];
84         int16_t dc[3];
85     } u; /* anonymous unions aren't in C99 :( */
86     uint8_t ref;
87 } DiracBlock;
88
89 typedef struct SubBand {
90     int level;
91     int orientation;
92     int stride; /* in bytes */
93     int width;
94     int height;
95     int pshift;
96     int quant;
97     uint8_t *ibuf;
98     struct SubBand *parent;
99
100     /* for low delay */
101     unsigned length;
102     const uint8_t *coeff_data;
103 } SubBand;
104
105 typedef struct Plane {
106     DWTPlane idwt;
107
108     int width;
109     int height;
110     ptrdiff_t stride;
111
112     /* block length */
113     uint8_t xblen;
114     uint8_t yblen;
115     /* block separation (block n+1 starts after this many pixels in block n) */
116     uint8_t xbsep;
117     uint8_t ybsep;
118     /* amount of overspill on each edge (half of the overlap between blocks) */
119     uint8_t xoffset;
120     uint8_t yoffset;
121
122     SubBand band[MAX_DWT_LEVELS][4];
123 } Plane;
124
125 /* Used by Low Delay and High Quality profiles */
126 typedef struct DiracSlice {
127     GetBitContext gb;
128     int slice_x;
129     int slice_y;
130     int bytes;
131 } DiracSlice;
132
133 typedef struct DiracContext {
134     AVCodecContext *avctx;
135     MpegvideoEncDSPContext mpvencdsp;
136     VideoDSPContext vdsp;
137     DiracDSPContext diracdsp;
138     DiracGolombLUT *reader_ctx;
139     DiracVersionInfo version;
140     GetBitContext gb;
141     AVDiracSeqHeader seq;
142     int seen_sequence_header;
143     int frame_number;           /* number of the next frame to display       */
144     Plane plane[3];
145     int chroma_x_shift;
146     int chroma_y_shift;
147
148     int bit_depth;              /* bit depth                                 */
149     int pshift;                 /* pixel shift = bit_depth > 8               */
150
151     int zero_res;               /* zero residue flag                         */
152     int is_arith;               /* whether coeffs use arith or golomb coding */
153     int core_syntax;            /* use core syntax only                      */
154     int low_delay;              /* use the low delay syntax                  */
155     int hq_picture;             /* high quality picture, enables low_delay   */
156     int ld_picture;             /* use low delay picture, turns on low_delay */
157     int dc_prediction;          /* has dc prediction                         */
158     int globalmc_flag;          /* use global motion compensation            */
159     int num_refs;               /* number of reference pictures              */
160
161     /* wavelet decoding */
162     unsigned wavelet_depth;     /* depth of the IDWT                         */
163     unsigned wavelet_idx;
164
165     /**
166      * schroedinger older than 1.0.8 doesn't store
167      * quant delta if only one codebook exists in a band
168      */
169     unsigned old_delta_quant;
170     unsigned codeblock_mode;
171
172     unsigned num_x;              /* number of horizontal slices               */
173     unsigned num_y;              /* number of vertical slices                 */
174
175     uint8_t *thread_buf;         /* Per-thread buffer for coefficient storage */
176     int threads_num_buf;         /* Current # of buffers allocated            */
177     int thread_buf_size;         /* Each thread has a buffer this size        */
178
179     DiracSlice *slice_params_buf;
180     int slice_params_num_buf;
181
182     struct {
183         unsigned width;
184         unsigned height;
185     } codeblock[MAX_DWT_LEVELS+1];
186
187     struct {
188         AVRational bytes;       /* average bytes per slice                   */
189         uint8_t quant[MAX_DWT_LEVELS][4]; /* [DIRAC_STD] E.1 */
190     } lowdelay;
191
192     struct {
193         unsigned prefix_bytes;
194         uint64_t size_scaler;
195     } highquality;
196
197     struct {
198         int pan_tilt[2];        /* pan/tilt vector                           */
199         int zrs[2][2];          /* zoom/rotate/shear matrix                  */
200         int perspective[2];     /* perspective vector                        */
201         unsigned zrs_exp;
202         unsigned perspective_exp;
203     } globalmc[2];
204
205     /* motion compensation */
206     uint8_t mv_precision;       /* [DIRAC_STD] REFS_WT_PRECISION             */
207     int16_t weight[2];          /* [DIRAC_STD] REF1_WT and REF2_WT           */
208     unsigned weight_log2denom;  /* [DIRAC_STD] REFS_WT_PRECISION             */
209
210     int blwidth;                /* number of blocks (horizontally)           */
211     int blheight;               /* number of blocks (vertically)             */
212     int sbwidth;                /* number of superblocks (horizontally)      */
213     int sbheight;               /* number of superblocks (vertically)        */
214
215     uint8_t *sbsplit;
216     DiracBlock *blmotion;
217
218     uint8_t *edge_emu_buffer[4];
219     uint8_t *edge_emu_buffer_base;
220
221     uint16_t *mctmp;            /* buffer holding the MC data multiplied by OBMC weights */
222     uint8_t *mcscratch;
223     int buffer_stride;
224
225     DECLARE_ALIGNED(16, uint8_t, obmc_weight)[3][MAX_BLOCKSIZE*MAX_BLOCKSIZE];
226
227     void (*put_pixels_tab[4])(uint8_t *dst, const uint8_t *src[5], int stride, int h);
228     void (*avg_pixels_tab[4])(uint8_t *dst, const uint8_t *src[5], int stride, int h);
229     void (*add_obmc)(uint16_t *dst, const uint8_t *src, int stride, const uint8_t *obmc_weight, int yblen);
230     dirac_weight_func weight_func;
231     dirac_biweight_func biweight_func;
232
233     DiracFrame *current_picture;
234     DiracFrame *ref_pics[2];
235
236     DiracFrame *ref_frames[MAX_REFERENCE_FRAMES+1];
237     DiracFrame *delay_frames[MAX_DELAY+1];
238     DiracFrame all_frames[MAX_FRAMES];
239 } DiracContext;
240
241 enum dirac_subband {
242     subband_ll = 0,
243     subband_hl = 1,
244     subband_lh = 2,
245     subband_hh = 3,
246     subband_nb,
247 };
248
249 /* magic number division by 3 from schroedinger */
250 static inline int divide3(int x)
251 {
252     return (int)((x+1U)*21845 + 10922) >> 16;
253 }
254
255 static DiracFrame *remove_frame(DiracFrame *framelist[], int picnum)
256 {
257     DiracFrame *remove_pic = NULL;
258     int i, remove_idx = -1;
259
260     for (i = 0; framelist[i]; i++)
261         if (framelist[i]->avframe->display_picture_number == picnum) {
262             remove_pic = framelist[i];
263             remove_idx = i;
264         }
265
266     if (remove_pic)
267         for (i = remove_idx; framelist[i]; i++)
268             framelist[i] = framelist[i+1];
269
270     return remove_pic;
271 }
272
273 static int add_frame(DiracFrame *framelist[], int maxframes, DiracFrame *frame)
274 {
275     int i;
276     for (i = 0; i < maxframes; i++)
277         if (!framelist[i]) {
278             framelist[i] = frame;
279             return 0;
280         }
281     return -1;
282 }
283
284 static int alloc_sequence_buffers(DiracContext *s)
285 {
286     int sbwidth  = DIVRNDUP(s->seq.width,  4);
287     int sbheight = DIVRNDUP(s->seq.height, 4);
288     int i, w, h, top_padding;
289
290     /* todo: think more about this / use or set Plane here */
291     for (i = 0; i < 3; i++) {
292         int max_xblen = MAX_BLOCKSIZE >> (i ? s->chroma_x_shift : 0);
293         int max_yblen = MAX_BLOCKSIZE >> (i ? s->chroma_y_shift : 0);
294         w = s->seq.width  >> (i ? s->chroma_x_shift : 0);
295         h = s->seq.height >> (i ? s->chroma_y_shift : 0);
296
297         /* we allocate the max we support here since num decompositions can
298          * change from frame to frame. Stride is aligned to 16 for SIMD, and
299          * 1<<MAX_DWT_LEVELS top padding to avoid if(y>0) in arith decoding
300          * MAX_BLOCKSIZE padding for MC: blocks can spill up to half of that
301          * on each side */
302         top_padding = FFMAX(1<<MAX_DWT_LEVELS, max_yblen/2);
303         w = FFALIGN(CALC_PADDING(w, MAX_DWT_LEVELS), 8); /* FIXME: Should this be 16 for SSE??? */
304         h = top_padding + CALC_PADDING(h, MAX_DWT_LEVELS) + max_yblen/2;
305
306         s->plane[i].idwt.buf_base = av_mallocz_array((w+max_xblen), h * (2 << s->pshift));
307         s->plane[i].idwt.tmp      = av_malloc_array((w+16), 2 << s->pshift);
308         s->plane[i].idwt.buf      = s->plane[i].idwt.buf_base + (top_padding*w)*(2 << s->pshift);
309         if (!s->plane[i].idwt.buf_base || !s->plane[i].idwt.tmp)
310             return AVERROR(ENOMEM);
311     }
312
313     /* fixme: allocate using real stride here */
314     s->sbsplit  = av_malloc_array(sbwidth, sbheight);
315     s->blmotion = av_malloc_array(sbwidth, sbheight * 16 * sizeof(*s->blmotion));
316
317     if (!s->sbsplit || !s->blmotion)
318         return AVERROR(ENOMEM);
319     return 0;
320 }
321
322 static int alloc_buffers(DiracContext *s, int stride)
323 {
324     int w = s->seq.width;
325     int h = s->seq.height;
326
327     av_assert0(stride >= w);
328     stride += 64;
329
330     if (s->buffer_stride >= stride)
331         return 0;
332     s->buffer_stride = 0;
333
334     av_freep(&s->edge_emu_buffer_base);
335     memset(s->edge_emu_buffer, 0, sizeof(s->edge_emu_buffer));
336     av_freep(&s->mctmp);
337     av_freep(&s->mcscratch);
338
339     s->edge_emu_buffer_base = av_malloc_array(stride, MAX_BLOCKSIZE);
340
341     s->mctmp     = av_malloc_array((stride+MAX_BLOCKSIZE), (h+MAX_BLOCKSIZE) * sizeof(*s->mctmp));
342     s->mcscratch = av_malloc_array(stride, MAX_BLOCKSIZE);
343
344     if (!s->edge_emu_buffer_base || !s->mctmp || !s->mcscratch)
345         return AVERROR(ENOMEM);
346
347     s->buffer_stride = stride;
348     return 0;
349 }
350
351 static void free_sequence_buffers(DiracContext *s)
352 {
353     int i, j, k;
354
355     for (i = 0; i < MAX_FRAMES; i++) {
356         if (s->all_frames[i].avframe->data[0]) {
357             av_frame_unref(s->all_frames[i].avframe);
358             memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated));
359         }
360
361         for (j = 0; j < 3; j++)
362             for (k = 1; k < 4; k++)
363                 av_freep(&s->all_frames[i].hpel_base[j][k]);
364     }
365
366     memset(s->ref_frames, 0, sizeof(s->ref_frames));
367     memset(s->delay_frames, 0, sizeof(s->delay_frames));
368
369     for (i = 0; i < 3; i++) {
370         av_freep(&s->plane[i].idwt.buf_base);
371         av_freep(&s->plane[i].idwt.tmp);
372     }
373
374     s->buffer_stride = 0;
375     av_freep(&s->sbsplit);
376     av_freep(&s->blmotion);
377     av_freep(&s->edge_emu_buffer_base);
378
379     av_freep(&s->mctmp);
380     av_freep(&s->mcscratch);
381 }
382
383 static AVOnce dirac_arith_init = AV_ONCE_INIT;
384
385 static av_cold int dirac_decode_init(AVCodecContext *avctx)
386 {
387     DiracContext *s = avctx->priv_data;
388     int i, ret;
389
390     s->avctx = avctx;
391     s->frame_number = -1;
392
393     s->thread_buf = NULL;
394     s->threads_num_buf = -1;
395     s->thread_buf_size = -1;
396
397     ff_dirac_golomb_reader_init(&s->reader_ctx);
398     ff_diracdsp_init(&s->diracdsp);
399     ff_mpegvideoencdsp_init(&s->mpvencdsp, avctx);
400     ff_videodsp_init(&s->vdsp, 8);
401
402     for (i = 0; i < MAX_FRAMES; i++) {
403         s->all_frames[i].avframe = av_frame_alloc();
404         if (!s->all_frames[i].avframe) {
405             while (i > 0)
406                 av_frame_free(&s->all_frames[--i].avframe);
407             return AVERROR(ENOMEM);
408         }
409     }
410     ret = ff_thread_once(&dirac_arith_init, ff_dirac_init_arith_tables);
411     if (ret != 0)
412         return AVERROR_UNKNOWN;
413
414     return 0;
415 }
416
417 static void dirac_decode_flush(AVCodecContext *avctx)
418 {
419     DiracContext *s = avctx->priv_data;
420     free_sequence_buffers(s);
421     s->seen_sequence_header = 0;
422     s->frame_number = -1;
423 }
424
425 static av_cold int dirac_decode_end(AVCodecContext *avctx)
426 {
427     DiracContext *s = avctx->priv_data;
428     int i;
429
430     ff_dirac_golomb_reader_end(&s->reader_ctx);
431
432     dirac_decode_flush(avctx);
433     for (i = 0; i < MAX_FRAMES; i++)
434         av_frame_free(&s->all_frames[i].avframe);
435
436     av_freep(&s->thread_buf);
437     av_freep(&s->slice_params_buf);
438
439     return 0;
440 }
441
442 static inline int coeff_unpack_golomb(GetBitContext *gb, int qfactor, int qoffset)
443 {
444     int coeff = dirac_get_se_golomb(gb);
445     const unsigned sign = FFSIGN(coeff);
446     if (coeff)
447         coeff = sign*((sign * coeff * qfactor + qoffset) >> 2);
448     return coeff;
449 }
450
451 #define SIGN_CTX(x) (CTX_SIGN_ZERO + ((x) > 0) - ((x) < 0))
452
453 #define UNPACK_ARITH(n, type) \
454     static inline void coeff_unpack_arith_##n(DiracArith *c, int qfactor, int qoffset, \
455                                               SubBand *b, type *buf, int x, int y) \
456     { \
457         int sign, sign_pred = 0, pred_ctx = CTX_ZPZN_F1; \
458         unsigned coeff; \
459         const int mstride = -(b->stride >> (1+b->pshift)); \
460         if (b->parent) { \
461             const type *pbuf = (type *)b->parent->ibuf; \
462             const int stride = b->parent->stride >> (1+b->parent->pshift); \
463             pred_ctx += !!pbuf[stride * (y>>1) + (x>>1)] << 1; \
464         } \
465         if (b->orientation == subband_hl) \
466             sign_pred = buf[mstride]; \
467         if (x) { \
468             pred_ctx += !(buf[-1] | buf[mstride] | buf[-1 + mstride]); \
469             if (b->orientation == subband_lh) \
470                 sign_pred = buf[-1]; \
471         } else { \
472             pred_ctx += !buf[mstride]; \
473         } \
474         coeff = dirac_get_arith_uint(c, pred_ctx, CTX_COEFF_DATA); \
475         if (coeff) { \
476             coeff = (coeff * qfactor + qoffset) >> 2; \
477             sign  = dirac_get_arith_bit(c, SIGN_CTX(sign_pred)); \
478             coeff = (coeff ^ -sign) + sign; \
479         } \
480         *buf = coeff; \
481     } \
482
483 UNPACK_ARITH(8, int16_t)
484 UNPACK_ARITH(10, int32_t)
485
486 /**
487  * Decode the coeffs in the rectangle defined by left, right, top, bottom
488  * [DIRAC_STD] 13.4.3.2 Codeblock unpacking loop. codeblock()
489  */
490 static inline void codeblock(DiracContext *s, SubBand *b,
491                              GetBitContext *gb, DiracArith *c,
492                              int left, int right, int top, int bottom,
493                              int blockcnt_one, int is_arith)
494 {
495     int x, y, zero_block;
496     int qoffset, qfactor;
497     uint8_t *buf;
498
499     /* check for any coded coefficients in this codeblock */
500     if (!blockcnt_one) {
501         if (is_arith)
502             zero_block = dirac_get_arith_bit(c, CTX_ZERO_BLOCK);
503         else
504             zero_block = get_bits1(gb);
505
506         if (zero_block)
507             return;
508     }
509
510     if (s->codeblock_mode && !(s->old_delta_quant && blockcnt_one)) {
511         int quant = b->quant;
512         if (is_arith)
513             quant += dirac_get_arith_int(c, CTX_DELTA_Q_F, CTX_DELTA_Q_DATA);
514         else
515             quant += dirac_get_se_golomb(gb);
516         if (quant < 0) {
517             av_log(s->avctx, AV_LOG_ERROR, "Invalid quant\n");
518             return;
519         }
520         b->quant = quant;
521     }
522
523     if (b->quant > (DIRAC_MAX_QUANT_INDEX - 1)) {
524         av_log(s->avctx, AV_LOG_ERROR, "Unsupported quant %d\n", b->quant);
525         b->quant = 0;
526         return;
527     }
528
529     qfactor = ff_dirac_qscale_tab[b->quant];
530     /* TODO: context pointer? */
531     if (!s->num_refs)
532         qoffset = ff_dirac_qoffset_intra_tab[b->quant] + 2;
533     else
534         qoffset = ff_dirac_qoffset_inter_tab[b->quant] + 2;
535
536     buf = b->ibuf + top * b->stride;
537     if (is_arith) {
538         for (y = top; y < bottom; y++) {
539             for (x = left; x < right; x++) {
540                 if (b->pshift) {
541                     coeff_unpack_arith_10(c, qfactor, qoffset, b, (int32_t*)(buf)+x, x, y);
542                 } else {
543                     coeff_unpack_arith_8(c, qfactor, qoffset, b, (int16_t*)(buf)+x, x, y);
544                 }
545             }
546             buf += b->stride;
547         }
548     } else {
549         for (y = top; y < bottom; y++) {
550             for (x = left; x < right; x++) {
551                 int val = coeff_unpack_golomb(gb, qfactor, qoffset);
552                 if (b->pshift) {
553                     AV_WN32(&buf[4*x], val);
554                 } else {
555                     AV_WN16(&buf[2*x], val);
556                 }
557             }
558             buf += b->stride;
559          }
560      }
561 }
562
563 /**
564  * Dirac Specification ->
565  * 13.3 intra_dc_prediction(band)
566  */
567 #define INTRA_DC_PRED(n, type) \
568     static inline void intra_dc_prediction_##n(SubBand *b) \
569     { \
570         type *buf = (type*)b->ibuf; \
571         int x, y; \
572         \
573         for (x = 1; x < b->width; x++) \
574             buf[x] += buf[x-1]; \
575         buf += (b->stride >> (1+b->pshift)); \
576         \
577         for (y = 1; y < b->height; y++) { \
578             buf[0] += buf[-(b->stride >> (1+b->pshift))]; \
579             \
580             for (x = 1; x < b->width; x++) { \
581                 int pred = buf[x - 1] + buf[x - (b->stride >> (1+b->pshift))] + buf[x - (b->stride >> (1+b->pshift))-1]; \
582                 buf[x]  += divide3(pred); \
583             } \
584             buf += (b->stride >> (1+b->pshift)); \
585         } \
586     } \
587
588 INTRA_DC_PRED(8, int16_t)
589 INTRA_DC_PRED(10, uint32_t)
590
591 /**
592  * Dirac Specification ->
593  * 13.4.2 Non-skipped subbands.  subband_coeffs()
594  */
595 static av_always_inline void decode_subband_internal(DiracContext *s, SubBand *b, int is_arith)
596 {
597     int cb_x, cb_y, left, right, top, bottom;
598     DiracArith c;
599     GetBitContext gb;
600     int cb_width  = s->codeblock[b->level + (b->orientation != subband_ll)].width;
601     int cb_height = s->codeblock[b->level + (b->orientation != subband_ll)].height;
602     int blockcnt_one = (cb_width + cb_height) == 2;
603
604     if (!b->length)
605         return;
606
607     init_get_bits8(&gb, b->coeff_data, b->length);
608
609     if (is_arith)
610         ff_dirac_init_arith_decoder(&c, &gb, b->length);
611
612     top = 0;
613     for (cb_y = 0; cb_y < cb_height; cb_y++) {
614         bottom = (b->height * (cb_y+1LL)) / cb_height;
615         left = 0;
616         for (cb_x = 0; cb_x < cb_width; cb_x++) {
617             right = (b->width * (cb_x+1LL)) / cb_width;
618             codeblock(s, b, &gb, &c, left, right, top, bottom, blockcnt_one, is_arith);
619             left = right;
620         }
621         top = bottom;
622     }
623
624     if (b->orientation == subband_ll && s->num_refs == 0) {
625         if (s->pshift) {
626             intra_dc_prediction_10(b);
627         } else {
628             intra_dc_prediction_8(b);
629         }
630     }
631 }
632
633 static int decode_subband_arith(AVCodecContext *avctx, void *b)
634 {
635     DiracContext *s = avctx->priv_data;
636     decode_subband_internal(s, b, 1);
637     return 0;
638 }
639
640 static int decode_subband_golomb(AVCodecContext *avctx, void *arg)
641 {
642     DiracContext *s = avctx->priv_data;
643     SubBand **b     = arg;
644     decode_subband_internal(s, *b, 0);
645     return 0;
646 }
647
648 /**
649  * Dirac Specification ->
650  * [DIRAC_STD] 13.4.1 core_transform_data()
651  */
652 static void decode_component(DiracContext *s, int comp)
653 {
654     AVCodecContext *avctx = s->avctx;
655     SubBand *bands[3*MAX_DWT_LEVELS+1];
656     enum dirac_subband orientation;
657     int level, num_bands = 0;
658
659     /* Unpack all subbands at all levels. */
660     for (level = 0; level < s->wavelet_depth; level++) {
661         for (orientation = !!level; orientation < 4; orientation++) {
662             SubBand *b = &s->plane[comp].band[level][orientation];
663             bands[num_bands++] = b;
664
665             align_get_bits(&s->gb);
666             /* [DIRAC_STD] 13.4.2 subband() */
667             b->length = get_interleaved_ue_golomb(&s->gb);
668             if (b->length) {
669                 b->quant = get_interleaved_ue_golomb(&s->gb);
670                 align_get_bits(&s->gb);
671                 b->coeff_data = s->gb.buffer + get_bits_count(&s->gb)/8;
672                 b->length = FFMIN(b->length, FFMAX(get_bits_left(&s->gb)/8, 0));
673                 skip_bits_long(&s->gb, b->length*8);
674             }
675         }
676         /* arithmetic coding has inter-level dependencies, so we can only execute one level at a time */
677         if (s->is_arith)
678             avctx->execute(avctx, decode_subband_arith, &s->plane[comp].band[level][!!level],
679                            NULL, 4-!!level, sizeof(SubBand));
680     }
681     /* golomb coding has no inter-level dependencies, so we can execute all subbands in parallel */
682     if (!s->is_arith)
683         avctx->execute(avctx, decode_subband_golomb, bands, NULL, num_bands, sizeof(SubBand*));
684 }
685
686 #define PARSE_VALUES(type, x, gb, ebits, buf1, buf2) \
687     type *buf = (type *)buf1; \
688     buf[x] = coeff_unpack_golomb(gb, qfactor, qoffset); \
689     if (get_bits_count(gb) >= ebits) \
690         return; \
691     if (buf2) { \
692         buf = (type *)buf2; \
693         buf[x] = coeff_unpack_golomb(gb, qfactor, qoffset); \
694         if (get_bits_count(gb) >= ebits) \
695             return; \
696     } \
697
698 static void decode_subband(DiracContext *s, GetBitContext *gb, int quant,
699                            int slice_x, int slice_y, int bits_end,
700                            SubBand *b1, SubBand *b2)
701 {
702     int left   = b1->width  * slice_x    / s->num_x;
703     int right  = b1->width  *(slice_x+1) / s->num_x;
704     int top    = b1->height * slice_y    / s->num_y;
705     int bottom = b1->height *(slice_y+1) / s->num_y;
706
707     int qfactor, qoffset;
708
709     uint8_t *buf1 =      b1->ibuf + top * b1->stride;
710     uint8_t *buf2 = b2 ? b2->ibuf + top * b2->stride: NULL;
711     int x, y;
712
713     if (quant > (DIRAC_MAX_QUANT_INDEX - 1)) {
714         av_log(s->avctx, AV_LOG_ERROR, "Unsupported quant %d\n", quant);
715         return;
716     }
717     qfactor = ff_dirac_qscale_tab[quant];
718     qoffset = ff_dirac_qoffset_intra_tab[quant] + 2;
719     /* we have to constantly check for overread since the spec explicitly
720        requires this, with the meaning that all remaining coeffs are set to 0 */
721     if (get_bits_count(gb) >= bits_end)
722         return;
723
724     if (s->pshift) {
725         for (y = top; y < bottom; y++) {
726             for (x = left; x < right; x++) {
727                 PARSE_VALUES(int32_t, x, gb, bits_end, buf1, buf2);
728             }
729             buf1 += b1->stride;
730             if (buf2)
731                 buf2 += b2->stride;
732         }
733     }
734     else {
735         for (y = top; y < bottom; y++) {
736             for (x = left; x < right; x++) {
737                 PARSE_VALUES(int16_t, x, gb, bits_end, buf1, buf2);
738             }
739             buf1 += b1->stride;
740             if (buf2)
741                 buf2 += b2->stride;
742         }
743     }
744 }
745
746 /**
747  * Dirac Specification ->
748  * 13.5.2 Slices. slice(sx,sy)
749  */
750 static int decode_lowdelay_slice(AVCodecContext *avctx, void *arg)
751 {
752     DiracContext *s = avctx->priv_data;
753     DiracSlice *slice = arg;
754     GetBitContext *gb = &slice->gb;
755     enum dirac_subband orientation;
756     int level, quant, chroma_bits, chroma_end;
757
758     int quant_base  = get_bits(gb, 7); /*[DIRAC_STD] qindex */
759     int length_bits = av_log2(8 * slice->bytes)+1;
760     int luma_bits   = get_bits_long(gb, length_bits);
761     int luma_end    = get_bits_count(gb) + FFMIN(luma_bits, get_bits_left(gb));
762
763     /* [DIRAC_STD] 13.5.5.2 luma_slice_band */
764     for (level = 0; level < s->wavelet_depth; level++)
765         for (orientation = !!level; orientation < 4; orientation++) {
766             quant = FFMAX(quant_base - s->lowdelay.quant[level][orientation], 0);
767             decode_subband(s, gb, quant, slice->slice_x, slice->slice_y, luma_end,
768                            &s->plane[0].band[level][orientation], NULL);
769         }
770
771     /* consume any unused bits from luma */
772     skip_bits_long(gb, get_bits_count(gb) - luma_end);
773
774     chroma_bits = 8*slice->bytes - 7 - length_bits - luma_bits;
775     chroma_end  = get_bits_count(gb) + FFMIN(chroma_bits, get_bits_left(gb));
776     /* [DIRAC_STD] 13.5.5.3 chroma_slice_band */
777     for (level = 0; level < s->wavelet_depth; level++)
778         for (orientation = !!level; orientation < 4; orientation++) {
779             quant = FFMAX(quant_base - s->lowdelay.quant[level][orientation], 0);
780             decode_subband(s, gb, quant, slice->slice_x, slice->slice_y, chroma_end,
781                            &s->plane[1].band[level][orientation],
782                            &s->plane[2].band[level][orientation]);
783         }
784
785     return 0;
786 }
787
788 typedef struct SliceCoeffs {
789     int left;
790     int top;
791     int tot_h;
792     int tot_v;
793     int tot;
794 } SliceCoeffs;
795
796 static int subband_coeffs(DiracContext *s, int x, int y, int p,
797                           SliceCoeffs c[MAX_DWT_LEVELS])
798 {
799     int level, coef = 0;
800     for (level = 0; level < s->wavelet_depth; level++) {
801         SliceCoeffs *o = &c[level];
802         SubBand *b = &s->plane[p].band[level][3]; /* orientation doens't matter */
803         o->top   = b->height * y / s->num_y;
804         o->left  = b->width  * x / s->num_x;
805         o->tot_h = ((b->width  * (x + 1)) / s->num_x) - o->left;
806         o->tot_v = ((b->height * (y + 1)) / s->num_y) - o->top;
807         o->tot   = o->tot_h*o->tot_v;
808         coef    += o->tot * (4 - !!level);
809     }
810     return coef;
811 }
812
813 /**
814  * VC-2 Specification ->
815  * 13.5.3 hq_slice(sx,sy)
816  */
817 static int decode_hq_slice(DiracContext *s, DiracSlice *slice, uint8_t *tmp_buf)
818 {
819     int i, level, orientation, quant_idx;
820     int qfactor[MAX_DWT_LEVELS][4], qoffset[MAX_DWT_LEVELS][4];
821     GetBitContext *gb = &slice->gb;
822     SliceCoeffs coeffs_num[MAX_DWT_LEVELS];
823
824     skip_bits_long(gb, 8*s->highquality.prefix_bytes);
825     quant_idx = get_bits(gb, 8);
826
827     if (quant_idx > DIRAC_MAX_QUANT_INDEX - 1) {
828         av_log(s->avctx, AV_LOG_ERROR, "Invalid quantization index - %i\n", quant_idx);
829         return AVERROR_INVALIDDATA;
830     }
831
832     /* Slice quantization (slice_quantizers() in the specs) */
833     for (level = 0; level < s->wavelet_depth; level++) {
834         for (orientation = !!level; orientation < 4; orientation++) {
835             const int quant = FFMAX(quant_idx - s->lowdelay.quant[level][orientation], 0);
836             qfactor[level][orientation] = ff_dirac_qscale_tab[quant];
837             qoffset[level][orientation] = ff_dirac_qoffset_intra_tab[quant] + 2;
838         }
839     }
840
841     /* Luma + 2 Chroma planes */
842     for (i = 0; i < 3; i++) {
843         int coef_num, coef_par, off = 0;
844         int64_t length = s->highquality.size_scaler*get_bits(gb, 8);
845         int64_t bits_end = get_bits_count(gb) + 8*length;
846         const uint8_t *addr = align_get_bits(gb);
847
848         if (length*8 > get_bits_left(gb)) {
849             av_log(s->avctx, AV_LOG_ERROR, "end too far away\n");
850             return AVERROR_INVALIDDATA;
851         }
852
853         coef_num = subband_coeffs(s, slice->slice_x, slice->slice_y, i, coeffs_num);
854
855         if (s->pshift)
856             coef_par = ff_dirac_golomb_read_32bit(s->reader_ctx, addr,
857                                                   length, tmp_buf, coef_num);
858         else
859             coef_par = ff_dirac_golomb_read_16bit(s->reader_ctx, addr,
860                                                   length, tmp_buf, coef_num);
861
862         if (coef_num > coef_par) {
863             const int start_b = coef_par * (1 << (s->pshift + 1));
864             const int end_b   = coef_num * (1 << (s->pshift + 1));
865             memset(&tmp_buf[start_b], 0, end_b - start_b);
866         }
867
868         for (level = 0; level < s->wavelet_depth; level++) {
869             const SliceCoeffs *c = &coeffs_num[level];
870             for (orientation = !!level; orientation < 4; orientation++) {
871                 const SubBand *b1 = &s->plane[i].band[level][orientation];
872                 uint8_t *buf = b1->ibuf + c->top * b1->stride + (c->left << (s->pshift + 1));
873
874                 /* Change to c->tot_h <= 4 for AVX2 dequantization */
875                 const int qfunc = s->pshift + 2*(c->tot_h <= 2);
876                 s->diracdsp.dequant_subband[qfunc](&tmp_buf[off], buf, b1->stride,
877                                                    qfactor[level][orientation],
878                                                    qoffset[level][orientation],
879                                                    c->tot_v, c->tot_h);
880
881                 off += c->tot << (s->pshift + 1);
882             }
883         }
884
885         skip_bits_long(gb, bits_end - get_bits_count(gb));
886     }
887
888     return 0;
889 }
890
891 static int decode_hq_slice_row(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
892 {
893     int i;
894     DiracContext *s = avctx->priv_data;
895     DiracSlice *slices = ((DiracSlice *)arg) + s->num_x*jobnr;
896     uint8_t *thread_buf = &s->thread_buf[s->thread_buf_size*threadnr];
897     for (i = 0; i < s->num_x; i++)
898         decode_hq_slice(s, &slices[i], thread_buf);
899     return 0;
900 }
901
902 /**
903  * Dirac Specification ->
904  * 13.5.1 low_delay_transform_data()
905  */
906 static int decode_lowdelay(DiracContext *s)
907 {
908     AVCodecContext *avctx = s->avctx;
909     int slice_x, slice_y, bufsize;
910     int64_t coef_buf_size, bytes = 0;
911     const uint8_t *buf;
912     DiracSlice *slices;
913     SliceCoeffs tmp[MAX_DWT_LEVELS];
914     int slice_num = 0;
915
916     if (s->slice_params_num_buf != (s->num_x * s->num_y)) {
917         s->slice_params_buf = av_realloc_f(s->slice_params_buf, s->num_x * s->num_y, sizeof(DiracSlice));
918         if (!s->slice_params_buf) {
919             av_log(s->avctx, AV_LOG_ERROR, "slice params buffer allocation failure\n");
920             s->slice_params_num_buf = 0;
921             return AVERROR(ENOMEM);
922         }
923         s->slice_params_num_buf = s->num_x * s->num_y;
924     }
925     slices = s->slice_params_buf;
926
927     /* 8 becacuse that's how much the golomb reader could overread junk data
928      * from another plane/slice at most, and 512 because SIMD */
929     coef_buf_size = subband_coeffs(s, s->num_x - 1, s->num_y - 1, 0, tmp) + 8;
930     coef_buf_size = (coef_buf_size << (1 + s->pshift)) + 512;
931
932     if (s->threads_num_buf != avctx->thread_count ||
933         s->thread_buf_size != coef_buf_size) {
934         s->threads_num_buf  = avctx->thread_count;
935         s->thread_buf_size  = coef_buf_size;
936         s->thread_buf       = av_realloc_f(s->thread_buf, avctx->thread_count, s->thread_buf_size);
937         if (!s->thread_buf) {
938             av_log(s->avctx, AV_LOG_ERROR, "thread buffer allocation failure\n");
939             return AVERROR(ENOMEM);
940         }
941     }
942
943     align_get_bits(&s->gb);
944     /*[DIRAC_STD] 13.5.2 Slices. slice(sx,sy) */
945     buf = s->gb.buffer + get_bits_count(&s->gb)/8;
946     bufsize = get_bits_left(&s->gb);
947
948     if (s->hq_picture) {
949         int i;
950
951         for (slice_y = 0; bufsize > 0 && slice_y < s->num_y; slice_y++) {
952             for (slice_x = 0; bufsize > 0 && slice_x < s->num_x; slice_x++) {
953                 bytes = s->highquality.prefix_bytes + 1;
954                 for (i = 0; i < 3; i++) {
955                     if (bytes <= bufsize/8)
956                         bytes += buf[bytes] * s->highquality.size_scaler + 1;
957                 }
958                 if (bytes >= INT_MAX || bytes*8 > bufsize) {
959                     av_log(s->avctx, AV_LOG_ERROR, "too many bytes\n");
960                     return AVERROR_INVALIDDATA;
961                 }
962
963                 slices[slice_num].bytes   = bytes;
964                 slices[slice_num].slice_x = slice_x;
965                 slices[slice_num].slice_y = slice_y;
966                 init_get_bits(&slices[slice_num].gb, buf, bufsize);
967                 slice_num++;
968
969                 buf     += bytes;
970                 if (bufsize/8 >= bytes)
971                     bufsize -= bytes*8;
972                 else
973                     bufsize = 0;
974             }
975         }
976
977         if (s->num_x*s->num_y != slice_num) {
978             av_log(s->avctx, AV_LOG_ERROR, "too few slices\n");
979             return AVERROR_INVALIDDATA;
980         }
981
982         avctx->execute2(avctx, decode_hq_slice_row, slices, NULL, s->num_y);
983     } else {
984         for (slice_y = 0; bufsize > 0 && slice_y < s->num_y; slice_y++) {
985             for (slice_x = 0; bufsize > 0 && slice_x < s->num_x; slice_x++) {
986                 bytes = (slice_num+1) * (int64_t)s->lowdelay.bytes.num / s->lowdelay.bytes.den
987                        - slice_num    * (int64_t)s->lowdelay.bytes.num / s->lowdelay.bytes.den;
988                 slices[slice_num].bytes   = bytes;
989                 slices[slice_num].slice_x = slice_x;
990                 slices[slice_num].slice_y = slice_y;
991                 init_get_bits(&slices[slice_num].gb, buf, bufsize);
992                 slice_num++;
993
994                 buf     += bytes;
995                 if (bufsize/8 >= bytes)
996                     bufsize -= bytes*8;
997                 else
998                     bufsize = 0;
999             }
1000         }
1001         avctx->execute(avctx, decode_lowdelay_slice, slices, NULL, slice_num,
1002                        sizeof(DiracSlice)); /* [DIRAC_STD] 13.5.2 Slices */
1003     }
1004
1005     if (s->dc_prediction) {
1006         if (s->pshift) {
1007             intra_dc_prediction_10(&s->plane[0].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
1008             intra_dc_prediction_10(&s->plane[1].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
1009             intra_dc_prediction_10(&s->plane[2].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
1010         } else {
1011             intra_dc_prediction_8(&s->plane[0].band[0][0]);
1012             intra_dc_prediction_8(&s->plane[1].band[0][0]);
1013             intra_dc_prediction_8(&s->plane[2].band[0][0]);
1014         }
1015     }
1016
1017     return 0;
1018 }
1019
1020 static void init_planes(DiracContext *s)
1021 {
1022     int i, w, h, level, orientation;
1023
1024     for (i = 0; i < 3; i++) {
1025         Plane *p = &s->plane[i];
1026
1027         p->width       = s->seq.width  >> (i ? s->chroma_x_shift : 0);
1028         p->height      = s->seq.height >> (i ? s->chroma_y_shift : 0);
1029         p->idwt.width  = w = CALC_PADDING(p->width , s->wavelet_depth);
1030         p->idwt.height = h = CALC_PADDING(p->height, s->wavelet_depth);
1031         p->idwt.stride = FFALIGN(p->idwt.width, 8) << (1 + s->pshift);
1032
1033         for (level = s->wavelet_depth-1; level >= 0; level--) {
1034             w = w>>1;
1035             h = h>>1;
1036             for (orientation = !!level; orientation < 4; orientation++) {
1037                 SubBand *b = &p->band[level][orientation];
1038
1039                 b->pshift = s->pshift;
1040                 b->ibuf   = p->idwt.buf;
1041                 b->level  = level;
1042                 b->stride = p->idwt.stride << (s->wavelet_depth - level);
1043                 b->width  = w;
1044                 b->height = h;
1045                 b->orientation = orientation;
1046
1047                 if (orientation & 1)
1048                     b->ibuf += w << (1+b->pshift);
1049                 if (orientation > 1)
1050                     b->ibuf += (b->stride>>1);
1051
1052                 if (level)
1053                     b->parent = &p->band[level-1][orientation];
1054             }
1055         }
1056
1057         if (i > 0) {
1058             p->xblen = s->plane[0].xblen >> s->chroma_x_shift;
1059             p->yblen = s->plane[0].yblen >> s->chroma_y_shift;
1060             p->xbsep = s->plane[0].xbsep >> s->chroma_x_shift;
1061             p->ybsep = s->plane[0].ybsep >> s->chroma_y_shift;
1062         }
1063
1064         p->xoffset = (p->xblen - p->xbsep)/2;
1065         p->yoffset = (p->yblen - p->ybsep)/2;
1066     }
1067 }
1068
1069 /**
1070  * Unpack the motion compensation parameters
1071  * Dirac Specification ->
1072  * 11.2 Picture prediction data. picture_prediction()
1073  */
1074 static int dirac_unpack_prediction_parameters(DiracContext *s)
1075 {
1076     static const uint8_t default_blen[] = { 4, 12, 16, 24 };
1077
1078     GetBitContext *gb = &s->gb;
1079     unsigned idx, ref;
1080
1081     align_get_bits(gb);
1082     /* [DIRAC_STD] 11.2.2 Block parameters. block_parameters() */
1083     /* Luma and Chroma are equal. 11.2.3 */
1084     idx = get_interleaved_ue_golomb(gb); /* [DIRAC_STD] index */
1085
1086     if (idx > 4) {
1087         av_log(s->avctx, AV_LOG_ERROR, "Block prediction index too high\n");
1088         return AVERROR_INVALIDDATA;
1089     }
1090
1091     if (idx == 0) {
1092         s->plane[0].xblen = get_interleaved_ue_golomb(gb);
1093         s->plane[0].yblen = get_interleaved_ue_golomb(gb);
1094         s->plane[0].xbsep = get_interleaved_ue_golomb(gb);
1095         s->plane[0].ybsep = get_interleaved_ue_golomb(gb);
1096     } else {
1097         /*[DIRAC_STD] preset_block_params(index). Table 11.1 */
1098         s->plane[0].xblen = default_blen[idx-1];
1099         s->plane[0].yblen = default_blen[idx-1];
1100         s->plane[0].xbsep = 4 * idx;
1101         s->plane[0].ybsep = 4 * idx;
1102     }
1103     /*[DIRAC_STD] 11.2.4 motion_data_dimensions()
1104       Calculated in function dirac_unpack_block_motion_data */
1105
1106     if (s->plane[0].xblen % (1 << s->chroma_x_shift) != 0 ||
1107         s->plane[0].yblen % (1 << s->chroma_y_shift) != 0 ||
1108         !s->plane[0].xblen || !s->plane[0].yblen) {
1109         av_log(s->avctx, AV_LOG_ERROR,
1110                "invalid x/y block length (%d/%d) for x/y chroma shift (%d/%d)\n",
1111                s->plane[0].xblen, s->plane[0].yblen, s->chroma_x_shift, s->chroma_y_shift);
1112         return AVERROR_INVALIDDATA;
1113     }
1114     if (!s->plane[0].xbsep || !s->plane[0].ybsep || s->plane[0].xbsep < s->plane[0].xblen/2 || s->plane[0].ybsep < s->plane[0].yblen/2) {
1115         av_log(s->avctx, AV_LOG_ERROR, "Block separation too small\n");
1116         return AVERROR_INVALIDDATA;
1117     }
1118     if (s->plane[0].xbsep > s->plane[0].xblen || s->plane[0].ybsep > s->plane[0].yblen) {
1119         av_log(s->avctx, AV_LOG_ERROR, "Block separation greater than size\n");
1120         return AVERROR_INVALIDDATA;
1121     }
1122     if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) {
1123         av_log(s->avctx, AV_LOG_ERROR, "Unsupported large block size\n");
1124         return AVERROR_PATCHWELCOME;
1125     }
1126
1127     /*[DIRAC_STD] 11.2.5 Motion vector precision. motion_vector_precision()
1128       Read motion vector precision */
1129     s->mv_precision = get_interleaved_ue_golomb(gb);
1130     if (s->mv_precision > 3) {
1131         av_log(s->avctx, AV_LOG_ERROR, "MV precision finer than eighth-pel\n");
1132         return AVERROR_INVALIDDATA;
1133     }
1134
1135     /*[DIRAC_STD] 11.2.6 Global motion. global_motion()
1136       Read the global motion compensation parameters */
1137     s->globalmc_flag = get_bits1(gb);
1138     if (s->globalmc_flag) {
1139         memset(s->globalmc, 0, sizeof(s->globalmc));
1140         /* [DIRAC_STD] pan_tilt(gparams) */
1141         for (ref = 0; ref < s->num_refs; ref++) {
1142             if (get_bits1(gb)) {
1143                 s->globalmc[ref].pan_tilt[0] = dirac_get_se_golomb(gb);
1144                 s->globalmc[ref].pan_tilt[1] = dirac_get_se_golomb(gb);
1145             }
1146             /* [DIRAC_STD] zoom_rotate_shear(gparams)
1147                zoom/rotation/shear parameters */
1148             if (get_bits1(gb)) {
1149                 s->globalmc[ref].zrs_exp   = get_interleaved_ue_golomb(gb);
1150                 s->globalmc[ref].zrs[0][0] = dirac_get_se_golomb(gb);
1151                 s->globalmc[ref].zrs[0][1] = dirac_get_se_golomb(gb);
1152                 s->globalmc[ref].zrs[1][0] = dirac_get_se_golomb(gb);
1153                 s->globalmc[ref].zrs[1][1] = dirac_get_se_golomb(gb);
1154             } else {
1155                 s->globalmc[ref].zrs[0][0] = 1;
1156                 s->globalmc[ref].zrs[1][1] = 1;
1157             }
1158             /* [DIRAC_STD] perspective(gparams) */
1159             if (get_bits1(gb)) {
1160                 s->globalmc[ref].perspective_exp = get_interleaved_ue_golomb(gb);
1161                 s->globalmc[ref].perspective[0]  = dirac_get_se_golomb(gb);
1162                 s->globalmc[ref].perspective[1]  = dirac_get_se_golomb(gb);
1163             }
1164             if (s->globalmc[ref].perspective_exp + (uint64_t)s->globalmc[ref].zrs_exp > 30) {
1165                 return AVERROR_INVALIDDATA;
1166             }
1167
1168         }
1169     }
1170
1171     /*[DIRAC_STD] 11.2.7 Picture prediction mode. prediction_mode()
1172       Picture prediction mode, not currently used. */
1173     if (get_interleaved_ue_golomb(gb)) {
1174         av_log(s->avctx, AV_LOG_ERROR, "Unknown picture prediction mode\n");
1175         return AVERROR_INVALIDDATA;
1176     }
1177
1178     /* [DIRAC_STD] 11.2.8 Reference picture weight. reference_picture_weights()
1179        just data read, weight calculation will be done later on. */
1180     s->weight_log2denom = 1;
1181     s->weight[0]        = 1;
1182     s->weight[1]        = 1;
1183
1184     if (get_bits1(gb)) {
1185         s->weight_log2denom = get_interleaved_ue_golomb(gb);
1186         if (s->weight_log2denom < 1 || s->weight_log2denom > 8) {
1187             av_log(s->avctx, AV_LOG_ERROR, "weight_log2denom unsupported or invalid\n");
1188             s->weight_log2denom = 1;
1189             return AVERROR_INVALIDDATA;
1190         }
1191         s->weight[0] = dirac_get_se_golomb(gb);
1192         if (s->num_refs == 2)
1193             s->weight[1] = dirac_get_se_golomb(gb);
1194     }
1195     return 0;
1196 }
1197
1198 /**
1199  * Dirac Specification ->
1200  * 11.3 Wavelet transform data. wavelet_transform()
1201  */
1202 static int dirac_unpack_idwt_params(DiracContext *s)
1203 {
1204     GetBitContext *gb = &s->gb;
1205     int i, level;
1206     unsigned tmp;
1207
1208 #define CHECKEDREAD(dst, cond, errmsg) \
1209     tmp = get_interleaved_ue_golomb(gb); \
1210     if (cond) { \
1211         av_log(s->avctx, AV_LOG_ERROR, errmsg); \
1212         return AVERROR_INVALIDDATA; \
1213     }\
1214     dst = tmp;
1215
1216     align_get_bits(gb);
1217
1218     s->zero_res = s->num_refs ? get_bits1(gb) : 0;
1219     if (s->zero_res)
1220         return 0;
1221
1222     /*[DIRAC_STD] 11.3.1 Transform parameters. transform_parameters() */
1223     CHECKEDREAD(s->wavelet_idx, tmp > 6, "wavelet_idx is too big\n")
1224
1225     CHECKEDREAD(s->wavelet_depth, tmp > MAX_DWT_LEVELS || tmp < 1, "invalid number of DWT decompositions\n")
1226
1227     if (!s->low_delay) {
1228         /* Codeblock parameters (core syntax only) */
1229         if (get_bits1(gb)) {
1230             for (i = 0; i <= s->wavelet_depth; i++) {
1231                 CHECKEDREAD(s->codeblock[i].width , tmp < 1 || tmp > (s->avctx->width >>s->wavelet_depth-i), "codeblock width invalid\n")
1232                 CHECKEDREAD(s->codeblock[i].height, tmp < 1 || tmp > (s->avctx->height>>s->wavelet_depth-i), "codeblock height invalid\n")
1233             }
1234
1235             CHECKEDREAD(s->codeblock_mode, tmp > 1, "unknown codeblock mode\n")
1236         }
1237         else {
1238             for (i = 0; i <= s->wavelet_depth; i++)
1239                 s->codeblock[i].width = s->codeblock[i].height = 1;
1240         }
1241     }
1242     else {
1243         s->num_x        = get_interleaved_ue_golomb(gb);
1244         s->num_y        = get_interleaved_ue_golomb(gb);
1245         if (s->num_x * s->num_y == 0 || s->num_x * (uint64_t)s->num_y > INT_MAX) {
1246             av_log(s->avctx,AV_LOG_ERROR,"Invalid numx/y\n");
1247             s->num_x = s->num_y = 0;
1248             return AVERROR_INVALIDDATA;
1249         }
1250         if (s->ld_picture) {
1251             s->lowdelay.bytes.num = get_interleaved_ue_golomb(gb);
1252             s->lowdelay.bytes.den = get_interleaved_ue_golomb(gb);
1253             if (s->lowdelay.bytes.den <= 0) {
1254                 av_log(s->avctx,AV_LOG_ERROR,"Invalid lowdelay.bytes.den\n");
1255                 return AVERROR_INVALIDDATA;
1256             }
1257         } else if (s->hq_picture) {
1258             s->highquality.prefix_bytes = get_interleaved_ue_golomb(gb);
1259             s->highquality.size_scaler  = get_interleaved_ue_golomb(gb);
1260             if (s->highquality.prefix_bytes >= INT_MAX / 8) {
1261                 av_log(s->avctx,AV_LOG_ERROR,"too many prefix bytes\n");
1262                 return AVERROR_INVALIDDATA;
1263             }
1264         }
1265
1266         /* [DIRAC_STD] 11.3.5 Quantisation matrices (low-delay syntax). quant_matrix() */
1267         if (get_bits1(gb)) {
1268             av_log(s->avctx,AV_LOG_DEBUG,"Low Delay: Has Custom Quantization Matrix!\n");
1269             /* custom quantization matrix */
1270             for (level = 0; level < s->wavelet_depth; level++) {
1271                 for (i = !!level; i < 4; i++) {
1272                     s->lowdelay.quant[level][i] = get_interleaved_ue_golomb(gb);
1273                 }
1274             }
1275         } else {
1276             if (s->wavelet_depth > 4) {
1277                 av_log(s->avctx,AV_LOG_ERROR,"Mandatory custom low delay matrix missing for depth %d\n", s->wavelet_depth);
1278                 return AVERROR_INVALIDDATA;
1279             }
1280             /* default quantization matrix */
1281             for (level = 0; level < s->wavelet_depth; level++)
1282                 for (i = 0; i < 4; i++) {
1283                     s->lowdelay.quant[level][i] = ff_dirac_default_qmat[s->wavelet_idx][level][i];
1284                     /* haar with no shift differs for different depths */
1285                     if (s->wavelet_idx == 3)
1286                         s->lowdelay.quant[level][i] += 4*(s->wavelet_depth-1 - level);
1287                 }
1288         }
1289     }
1290     return 0;
1291 }
1292
1293 static inline int pred_sbsplit(uint8_t *sbsplit, int stride, int x, int y)
1294 {
1295     static const uint8_t avgsplit[7] = { 0, 0, 1, 1, 1, 2, 2 };
1296
1297     if (!(x|y))
1298         return 0;
1299     else if (!y)
1300         return sbsplit[-1];
1301     else if (!x)
1302         return sbsplit[-stride];
1303
1304     return avgsplit[sbsplit[-1] + sbsplit[-stride] + sbsplit[-stride-1]];
1305 }
1306
1307 static inline int pred_block_mode(DiracBlock *block, int stride, int x, int y, int refmask)
1308 {
1309     int pred;
1310
1311     if (!(x|y))
1312         return 0;
1313     else if (!y)
1314         return block[-1].ref & refmask;
1315     else if (!x)
1316         return block[-stride].ref & refmask;
1317
1318     /* return the majority */
1319     pred = (block[-1].ref & refmask) + (block[-stride].ref & refmask) + (block[-stride-1].ref & refmask);
1320     return (pred >> 1) & refmask;
1321 }
1322
1323 static inline void pred_block_dc(DiracBlock *block, int stride, int x, int y)
1324 {
1325     int i, n = 0;
1326
1327     memset(block->u.dc, 0, sizeof(block->u.dc));
1328
1329     if (x && !(block[-1].ref & 3)) {
1330         for (i = 0; i < 3; i++)
1331             block->u.dc[i] += block[-1].u.dc[i];
1332         n++;
1333     }
1334
1335     if (y && !(block[-stride].ref & 3)) {
1336         for (i = 0; i < 3; i++)
1337             block->u.dc[i] += block[-stride].u.dc[i];
1338         n++;
1339     }
1340
1341     if (x && y && !(block[-1-stride].ref & 3)) {
1342         for (i = 0; i < 3; i++)
1343             block->u.dc[i] += block[-1-stride].u.dc[i];
1344         n++;
1345     }
1346
1347     if (n == 2) {
1348         for (i = 0; i < 3; i++)
1349             block->u.dc[i] = (block->u.dc[i]+1)>>1;
1350     } else if (n == 3) {
1351         for (i = 0; i < 3; i++)
1352             block->u.dc[i] = divide3(block->u.dc[i]);
1353     }
1354 }
1355
1356 static inline void pred_mv(DiracBlock *block, int stride, int x, int y, int ref)
1357 {
1358     int16_t *pred[3];
1359     int refmask = ref+1;
1360     int mask = refmask | DIRAC_REF_MASK_GLOBAL; /*  exclude gmc blocks */
1361     int n = 0;
1362
1363     if (x && (block[-1].ref & mask) == refmask)
1364         pred[n++] = block[-1].u.mv[ref];
1365
1366     if (y && (block[-stride].ref & mask) == refmask)
1367         pred[n++] = block[-stride].u.mv[ref];
1368
1369     if (x && y && (block[-stride-1].ref & mask) == refmask)
1370         pred[n++] = block[-stride-1].u.mv[ref];
1371
1372     switch (n) {
1373     case 0:
1374         block->u.mv[ref][0] = 0;
1375         block->u.mv[ref][1] = 0;
1376         break;
1377     case 1:
1378         block->u.mv[ref][0] = pred[0][0];
1379         block->u.mv[ref][1] = pred[0][1];
1380         break;
1381     case 2:
1382         block->u.mv[ref][0] = (pred[0][0] + pred[1][0] + 1) >> 1;
1383         block->u.mv[ref][1] = (pred[0][1] + pred[1][1] + 1) >> 1;
1384         break;
1385     case 3:
1386         block->u.mv[ref][0] = mid_pred(pred[0][0], pred[1][0], pred[2][0]);
1387         block->u.mv[ref][1] = mid_pred(pred[0][1], pred[1][1], pred[2][1]);
1388         break;
1389     }
1390 }
1391
1392 static void global_mv(DiracContext *s, DiracBlock *block, int x, int y, int ref)
1393 {
1394     int ez      = s->globalmc[ref].zrs_exp;
1395     int ep      = s->globalmc[ref].perspective_exp;
1396     int (*A)[2] = s->globalmc[ref].zrs;
1397     int *b      = s->globalmc[ref].pan_tilt;
1398     int *c      = s->globalmc[ref].perspective;
1399
1400     int m       = (1<<ep) - (c[0]*x + c[1]*y);
1401     int mx      = m * ((A[0][0] * x + A[0][1]*y) + (1<<ez) * b[0]);
1402     int my      = m * ((A[1][0] * x + A[1][1]*y) + (1<<ez) * b[1]);
1403
1404     block->u.mv[ref][0] = (mx + (1<<(ez+ep))) >> (ez+ep);
1405     block->u.mv[ref][1] = (my + (1<<(ez+ep))) >> (ez+ep);
1406 }
1407
1408 static void decode_block_params(DiracContext *s, DiracArith arith[8], DiracBlock *block,
1409                                 int stride, int x, int y)
1410 {
1411     int i;
1412
1413     block->ref  = pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_REF1);
1414     block->ref ^= dirac_get_arith_bit(arith, CTX_PMODE_REF1);
1415
1416     if (s->num_refs == 2) {
1417         block->ref |= pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_REF2);
1418         block->ref ^= dirac_get_arith_bit(arith, CTX_PMODE_REF2) << 1;
1419     }
1420
1421     if (!block->ref) {
1422         pred_block_dc(block, stride, x, y);
1423         for (i = 0; i < 3; i++)
1424             block->u.dc[i] += (unsigned)dirac_get_arith_int(arith+1+i, CTX_DC_F1, CTX_DC_DATA);
1425         return;
1426     }
1427
1428     if (s->globalmc_flag) {
1429         block->ref |= pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_GLOBAL);
1430         block->ref ^= dirac_get_arith_bit(arith, CTX_GLOBAL_BLOCK) << 2;
1431     }
1432
1433     for (i = 0; i < s->num_refs; i++)
1434         if (block->ref & (i+1)) {
1435             if (block->ref & DIRAC_REF_MASK_GLOBAL) {
1436                 global_mv(s, block, x, y, i);
1437             } else {
1438                 pred_mv(block, stride, x, y, i);
1439                 block->u.mv[i][0] += dirac_get_arith_int(arith + 4 + 2 * i, CTX_MV_F1, CTX_MV_DATA);
1440                 block->u.mv[i][1] += dirac_get_arith_int(arith + 5 + 2 * i, CTX_MV_F1, CTX_MV_DATA);
1441             }
1442         }
1443 }
1444
1445 /**
1446  * Copies the current block to the other blocks covered by the current superblock split mode
1447  */
1448 static void propagate_block_data(DiracBlock *block, int stride, int size)
1449 {
1450     int x, y;
1451     DiracBlock *dst = block;
1452
1453     for (x = 1; x < size; x++)
1454         dst[x] = *block;
1455
1456     for (y = 1; y < size; y++) {
1457         dst += stride;
1458         for (x = 0; x < size; x++)
1459             dst[x] = *block;
1460     }
1461 }
1462
1463 /**
1464  * Dirac Specification ->
1465  * 12. Block motion data syntax
1466  */
1467 static int dirac_unpack_block_motion_data(DiracContext *s)
1468 {
1469     GetBitContext *gb = &s->gb;
1470     uint8_t *sbsplit = s->sbsplit;
1471     int i, x, y, q, p;
1472     DiracArith arith[8];
1473
1474     align_get_bits(gb);
1475
1476     /* [DIRAC_STD] 11.2.4 and 12.2.1 Number of blocks and superblocks */
1477     s->sbwidth  = DIVRNDUP(s->seq.width,  4*s->plane[0].xbsep);
1478     s->sbheight = DIVRNDUP(s->seq.height, 4*s->plane[0].ybsep);
1479     s->blwidth  = 4 * s->sbwidth;
1480     s->blheight = 4 * s->sbheight;
1481
1482     /* [DIRAC_STD] 12.3.1 Superblock splitting modes. superblock_split_modes()
1483        decode superblock split modes */
1484     ff_dirac_init_arith_decoder(arith, gb, get_interleaved_ue_golomb(gb));     /* get_interleaved_ue_golomb(gb) is the length */
1485     for (y = 0; y < s->sbheight; y++) {
1486         for (x = 0; x < s->sbwidth; x++) {
1487             unsigned int split  = dirac_get_arith_uint(arith, CTX_SB_F1, CTX_SB_DATA);
1488             if (split > 2)
1489                 return AVERROR_INVALIDDATA;
1490             sbsplit[x] = (split + pred_sbsplit(sbsplit+x, s->sbwidth, x, y)) % 3;
1491         }
1492         sbsplit += s->sbwidth;
1493     }
1494
1495     /* setup arith decoding */
1496     ff_dirac_init_arith_decoder(arith, gb, get_interleaved_ue_golomb(gb));
1497     for (i = 0; i < s->num_refs; i++) {
1498         ff_dirac_init_arith_decoder(arith + 4 + 2 * i, gb, get_interleaved_ue_golomb(gb));
1499         ff_dirac_init_arith_decoder(arith + 5 + 2 * i, gb, get_interleaved_ue_golomb(gb));
1500     }
1501     for (i = 0; i < 3; i++)
1502         ff_dirac_init_arith_decoder(arith+1+i, gb, get_interleaved_ue_golomb(gb));
1503
1504     for (y = 0; y < s->sbheight; y++)
1505         for (x = 0; x < s->sbwidth; x++) {
1506             int blkcnt = 1 << s->sbsplit[y * s->sbwidth + x];
1507             int step   = 4 >> s->sbsplit[y * s->sbwidth + x];
1508
1509             for (q = 0; q < blkcnt; q++)
1510                 for (p = 0; p < blkcnt; p++) {
1511                     int bx = 4 * x + p*step;
1512                     int by = 4 * y + q*step;
1513                     DiracBlock *block = &s->blmotion[by*s->blwidth + bx];
1514                     decode_block_params(s, arith, block, s->blwidth, bx, by);
1515                     propagate_block_data(block, s->blwidth, step);
1516                 }
1517         }
1518
1519     return 0;
1520 }
1521
1522 static int weight(int i, int blen, int offset)
1523 {
1524 #define ROLLOFF(i) offset == 1 ? ((i) ? 5 : 3) :        \
1525     (1 + (6*(i) + offset - 1) / (2*offset - 1))
1526
1527     if (i < 2*offset)
1528         return ROLLOFF(i);
1529     else if (i > blen-1 - 2*offset)
1530         return ROLLOFF(blen-1 - i);
1531     return 8;
1532 }
1533
1534 static void init_obmc_weight_row(Plane *p, uint8_t *obmc_weight, int stride,
1535                                  int left, int right, int wy)
1536 {
1537     int x;
1538     for (x = 0; left && x < p->xblen >> 1; x++)
1539         obmc_weight[x] = wy*8;
1540     for (; x < p->xblen >> right; x++)
1541         obmc_weight[x] = wy*weight(x, p->xblen, p->xoffset);
1542     for (; x < p->xblen; x++)
1543         obmc_weight[x] = wy*8;
1544     for (; x < stride; x++)
1545         obmc_weight[x] = 0;
1546 }
1547
1548 static void init_obmc_weight(Plane *p, uint8_t *obmc_weight, int stride,
1549                              int left, int right, int top, int bottom)
1550 {
1551     int y;
1552     for (y = 0; top && y < p->yblen >> 1; y++) {
1553         init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
1554         obmc_weight += stride;
1555     }
1556     for (; y < p->yblen >> bottom; y++) {
1557         int wy = weight(y, p->yblen, p->yoffset);
1558         init_obmc_weight_row(p, obmc_weight, stride, left, right, wy);
1559         obmc_weight += stride;
1560     }
1561     for (; y < p->yblen; y++) {
1562         init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
1563         obmc_weight += stride;
1564     }
1565 }
1566
1567 static void init_obmc_weights(DiracContext *s, Plane *p, int by)
1568 {
1569     int top = !by;
1570     int bottom = by == s->blheight-1;
1571
1572     /* don't bother re-initing for rows 2 to blheight-2, the weights don't change */
1573     if (top || bottom || by == 1) {
1574         init_obmc_weight(p, s->obmc_weight[0], MAX_BLOCKSIZE, 1, 0, top, bottom);
1575         init_obmc_weight(p, s->obmc_weight[1], MAX_BLOCKSIZE, 0, 0, top, bottom);
1576         init_obmc_weight(p, s->obmc_weight[2], MAX_BLOCKSIZE, 0, 1, top, bottom);
1577     }
1578 }
1579
1580 static const uint8_t epel_weights[4][4][4] = {
1581     {{ 16,  0,  0,  0 },
1582      { 12,  4,  0,  0 },
1583      {  8,  8,  0,  0 },
1584      {  4, 12,  0,  0 }},
1585     {{ 12,  0,  4,  0 },
1586      {  9,  3,  3,  1 },
1587      {  6,  6,  2,  2 },
1588      {  3,  9,  1,  3 }},
1589     {{  8,  0,  8,  0 },
1590      {  6,  2,  6,  2 },
1591      {  4,  4,  4,  4 },
1592      {  2,  6,  2,  6 }},
1593     {{  4,  0, 12,  0 },
1594      {  3,  1,  9,  3 },
1595      {  2,  2,  6,  6 },
1596      {  1,  3,  3,  9 }}
1597 };
1598
1599 /**
1600  * For block x,y, determine which of the hpel planes to do bilinear
1601  * interpolation from and set src[] to the location in each hpel plane
1602  * to MC from.
1603  *
1604  * @return the index of the put_dirac_pixels_tab function to use
1605  *  0 for 1 plane (fpel,hpel), 1 for 2 planes (qpel), 2 for 4 planes (qpel), and 3 for epel
1606  */
1607 static int mc_subpel(DiracContext *s, DiracBlock *block, const uint8_t *src[5],
1608                      int x, int y, int ref, int plane)
1609 {
1610     Plane *p = &s->plane[plane];
1611     uint8_t **ref_hpel = s->ref_pics[ref]->hpel[plane];
1612     int motion_x = block->u.mv[ref][0];
1613     int motion_y = block->u.mv[ref][1];
1614     int mx, my, i, epel, nplanes = 0;
1615
1616     if (plane) {
1617         motion_x >>= s->chroma_x_shift;
1618         motion_y >>= s->chroma_y_shift;
1619     }
1620
1621     mx         = motion_x & ~(-1U << s->mv_precision);
1622     my         = motion_y & ~(-1U << s->mv_precision);
1623     motion_x >>= s->mv_precision;
1624     motion_y >>= s->mv_precision;
1625     /* normalize subpel coordinates to epel */
1626     /* TODO: template this function? */
1627     mx      <<= 3 - s->mv_precision;
1628     my      <<= 3 - s->mv_precision;
1629
1630     x += motion_x;
1631     y += motion_y;
1632     epel = (mx|my)&1;
1633
1634     /* hpel position */
1635     if (!((mx|my)&3)) {
1636         nplanes = 1;
1637         src[0] = ref_hpel[(my>>1)+(mx>>2)] + y*p->stride + x;
1638     } else {
1639         /* qpel or epel */
1640         nplanes = 4;
1641         for (i = 0; i < 4; i++)
1642             src[i] = ref_hpel[i] + y*p->stride + x;
1643
1644         /* if we're interpolating in the right/bottom halves, adjust the planes as needed
1645            we increment x/y because the edge changes for half of the pixels */
1646         if (mx > 4) {
1647             src[0] += 1;
1648             src[2] += 1;
1649             x++;
1650         }
1651         if (my > 4) {
1652             src[0] += p->stride;
1653             src[1] += p->stride;
1654             y++;
1655         }
1656
1657         /* hpel planes are:
1658            [0]: F  [1]: H
1659            [2]: V  [3]: C */
1660         if (!epel) {
1661             /* check if we really only need 2 planes since either mx or my is
1662                a hpel position. (epel weights of 0 handle this there) */
1663             if (!(mx&3)) {
1664                 /* mx == 0: average [0] and [2]
1665                    mx == 4: average [1] and [3] */
1666                 src[!mx] = src[2 + !!mx];
1667                 nplanes = 2;
1668             } else if (!(my&3)) {
1669                 src[0] = src[(my>>1)  ];
1670                 src[1] = src[(my>>1)+1];
1671                 nplanes = 2;
1672             }
1673         } else {
1674             /* adjust the ordering if needed so the weights work */
1675             if (mx > 4) {
1676                 FFSWAP(const uint8_t *, src[0], src[1]);
1677                 FFSWAP(const uint8_t *, src[2], src[3]);
1678             }
1679             if (my > 4) {
1680                 FFSWAP(const uint8_t *, src[0], src[2]);
1681                 FFSWAP(const uint8_t *, src[1], src[3]);
1682             }
1683             src[4] = epel_weights[my&3][mx&3];
1684         }
1685     }
1686
1687     /* fixme: v/h _edge_pos */
1688     if (x + p->xblen > p->width +EDGE_WIDTH/2 ||
1689         y + p->yblen > p->height+EDGE_WIDTH/2 ||
1690         x < 0 || y < 0) {
1691         for (i = 0; i < nplanes; i++) {
1692             s->vdsp.emulated_edge_mc(s->edge_emu_buffer[i], src[i],
1693                                      p->stride, p->stride,
1694                                      p->xblen, p->yblen, x, y,
1695                                      p->width+EDGE_WIDTH/2, p->height+EDGE_WIDTH/2);
1696             src[i] = s->edge_emu_buffer[i];
1697         }
1698     }
1699     return (nplanes>>1) + epel;
1700 }
1701
1702 static void add_dc(uint16_t *dst, int dc, int stride,
1703                    uint8_t *obmc_weight, int xblen, int yblen)
1704 {
1705     int x, y;
1706     dc += 128;
1707
1708     for (y = 0; y < yblen; y++) {
1709         for (x = 0; x < xblen; x += 2) {
1710             dst[x  ] += dc * obmc_weight[x  ];
1711             dst[x+1] += dc * obmc_weight[x+1];
1712         }
1713         dst          += stride;
1714         obmc_weight  += MAX_BLOCKSIZE;
1715     }
1716 }
1717
1718 static void block_mc(DiracContext *s, DiracBlock *block,
1719                      uint16_t *mctmp, uint8_t *obmc_weight,
1720                      int plane, int dstx, int dsty)
1721 {
1722     Plane *p = &s->plane[plane];
1723     const uint8_t *src[5];
1724     int idx;
1725
1726     switch (block->ref&3) {
1727     case 0: /* DC */
1728         add_dc(mctmp, block->u.dc[plane], p->stride, obmc_weight, p->xblen, p->yblen);
1729         return;
1730     case 1:
1731     case 2:
1732         idx = mc_subpel(s, block, src, dstx, dsty, (block->ref&3)-1, plane);
1733         s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1734         if (s->weight_func)
1735             s->weight_func(s->mcscratch, p->stride, s->weight_log2denom,
1736                            s->weight[0] + s->weight[1], p->yblen);
1737         break;
1738     case 3:
1739         idx = mc_subpel(s, block, src, dstx, dsty, 0, plane);
1740         s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1741         idx = mc_subpel(s, block, src, dstx, dsty, 1, plane);
1742         if (s->biweight_func) {
1743             /* fixme: +32 is a quick hack */
1744             s->put_pixels_tab[idx](s->mcscratch + 32, src, p->stride, p->yblen);
1745             s->biweight_func(s->mcscratch, s->mcscratch+32, p->stride, s->weight_log2denom,
1746                              s->weight[0], s->weight[1], p->yblen);
1747         } else
1748             s->avg_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
1749         break;
1750     }
1751     s->add_obmc(mctmp, s->mcscratch, p->stride, obmc_weight, p->yblen);
1752 }
1753
1754 static void mc_row(DiracContext *s, DiracBlock *block, uint16_t *mctmp, int plane, int dsty)
1755 {
1756     Plane *p = &s->plane[plane];
1757     int x, dstx = p->xbsep - p->xoffset;
1758
1759     block_mc(s, block, mctmp, s->obmc_weight[0], plane, -p->xoffset, dsty);
1760     mctmp += p->xbsep;
1761
1762     for (x = 1; x < s->blwidth-1; x++) {
1763         block_mc(s, block+x, mctmp, s->obmc_weight[1], plane, dstx, dsty);
1764         dstx  += p->xbsep;
1765         mctmp += p->xbsep;
1766     }
1767     block_mc(s, block+x, mctmp, s->obmc_weight[2], plane, dstx, dsty);
1768 }
1769
1770 static void select_dsp_funcs(DiracContext *s, int width, int height, int xblen, int yblen)
1771 {
1772     int idx = 0;
1773     if (xblen > 8)
1774         idx = 1;
1775     if (xblen > 16)
1776         idx = 2;
1777
1778     memcpy(s->put_pixels_tab, s->diracdsp.put_dirac_pixels_tab[idx], sizeof(s->put_pixels_tab));
1779     memcpy(s->avg_pixels_tab, s->diracdsp.avg_dirac_pixels_tab[idx], sizeof(s->avg_pixels_tab));
1780     s->add_obmc = s->diracdsp.add_dirac_obmc[idx];
1781     if (s->weight_log2denom > 1 || s->weight[0] != 1 || s->weight[1] != 1) {
1782         s->weight_func   = s->diracdsp.weight_dirac_pixels_tab[idx];
1783         s->biweight_func = s->diracdsp.biweight_dirac_pixels_tab[idx];
1784     } else {
1785         s->weight_func   = NULL;
1786         s->biweight_func = NULL;
1787     }
1788 }
1789
1790 static int interpolate_refplane(DiracContext *s, DiracFrame *ref, int plane, int width, int height)
1791 {
1792     /* chroma allocates an edge of 8 when subsampled
1793        which for 4:2:2 means an h edge of 16 and v edge of 8
1794        just use 8 for everything for the moment */
1795     int i, edge = EDGE_WIDTH/2;
1796
1797     ref->hpel[plane][0] = ref->avframe->data[plane];
1798     s->mpvencdsp.draw_edges(ref->hpel[plane][0], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM); /* EDGE_TOP | EDGE_BOTTOM values just copied to make it build, this needs to be ensured */
1799
1800     /* no need for hpel if we only have fpel vectors */
1801     if (!s->mv_precision)
1802         return 0;
1803
1804     for (i = 1; i < 4; i++) {
1805         if (!ref->hpel_base[plane][i])
1806             ref->hpel_base[plane][i] = av_malloc((height+2*edge) * ref->avframe->linesize[plane] + 32);
1807         if (!ref->hpel_base[plane][i]) {
1808             return AVERROR(ENOMEM);
1809         }
1810         /* we need to be 16-byte aligned even for chroma */
1811         ref->hpel[plane][i] = ref->hpel_base[plane][i] + edge*ref->avframe->linesize[plane] + 16;
1812     }
1813
1814     if (!ref->interpolated[plane]) {
1815         s->diracdsp.dirac_hpel_filter(ref->hpel[plane][1], ref->hpel[plane][2],
1816                                       ref->hpel[plane][3], ref->hpel[plane][0],
1817                                       ref->avframe->linesize[plane], width, height);
1818         s->mpvencdsp.draw_edges(ref->hpel[plane][1], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1819         s->mpvencdsp.draw_edges(ref->hpel[plane][2], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1820         s->mpvencdsp.draw_edges(ref->hpel[plane][3], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
1821     }
1822     ref->interpolated[plane] = 1;
1823
1824     return 0;
1825 }
1826
1827 /**
1828  * Dirac Specification ->
1829  * 13.0 Transform data syntax. transform_data()
1830  */
1831 static int dirac_decode_frame_internal(DiracContext *s)
1832 {
1833     DWTContext d;
1834     int y, i, comp, dsty;
1835     int ret;
1836
1837     if (s->low_delay) {
1838         /* [DIRAC_STD] 13.5.1 low_delay_transform_data() */
1839         if (!s->hq_picture) {
1840             for (comp = 0; comp < 3; comp++) {
1841                 Plane *p = &s->plane[comp];
1842                 memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
1843             }
1844         }
1845         if (!s->zero_res) {
1846             if ((ret = decode_lowdelay(s)) < 0)
1847                 return ret;
1848         }
1849     }
1850
1851     for (comp = 0; comp < 3; comp++) {
1852         Plane *p       = &s->plane[comp];
1853         uint8_t *frame = s->current_picture->avframe->data[comp];
1854
1855         /* FIXME: small resolutions */
1856         for (i = 0; i < 4; i++)
1857             s->edge_emu_buffer[i] = s->edge_emu_buffer_base + i*FFALIGN(p->width, 16);
1858
1859         if (!s->zero_res && !s->low_delay)
1860         {
1861             memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
1862             decode_component(s, comp); /* [DIRAC_STD] 13.4.1 core_transform_data() */
1863         }
1864         ret = ff_spatial_idwt_init(&d, &p->idwt, s->wavelet_idx+2,
1865                                    s->wavelet_depth, s->bit_depth);
1866         if (ret < 0)
1867             return ret;
1868
1869         if (!s->num_refs) { /* intra */
1870             for (y = 0; y < p->height; y += 16) {
1871                 int idx = (s->bit_depth - 8) >> 1;
1872                 ff_spatial_idwt_slice2(&d, y+16); /* decode */
1873                 s->diracdsp.put_signed_rect_clamped[idx](frame + y*p->stride,
1874                                                          p->stride,
1875                                                          p->idwt.buf + y*p->idwt.stride,
1876                                                          p->idwt.stride, p->width, 16);
1877             }
1878         } else { /* inter */
1879             int rowheight = p->ybsep*p->stride;
1880
1881             select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);
1882
1883             for (i = 0; i < s->num_refs; i++) {
1884                 int ret = interpolate_refplane(s, s->ref_pics[i], comp, p->width, p->height);
1885                 if (ret < 0)
1886                     return ret;
1887             }
1888
1889             memset(s->mctmp, 0, 4*p->yoffset*p->stride);
1890
1891             dsty = -p->yoffset;
1892             for (y = 0; y < s->blheight; y++) {
1893                 int h     = 0,
1894                     start = FFMAX(dsty, 0);
1895                 uint16_t *mctmp    = s->mctmp + y*rowheight;
1896                 DiracBlock *blocks = s->blmotion + y*s->blwidth;
1897
1898                 init_obmc_weights(s, p, y);
1899
1900                 if (y == s->blheight-1 || start+p->ybsep > p->height)
1901                     h = p->height - start;
1902                 else
1903                     h = p->ybsep - (start - dsty);
1904                 if (h < 0)
1905                     break;
1906
1907                 memset(mctmp+2*p->yoffset*p->stride, 0, 2*rowheight);
1908                 mc_row(s, blocks, mctmp, comp, dsty);
1909
1910                 mctmp += (start - dsty)*p->stride + p->xoffset;
1911                 ff_spatial_idwt_slice2(&d, start + h); /* decode */
1912                 /* NOTE: add_rect_clamped hasn't been templated hence the shifts.
1913                  * idwt.stride is passed as pixels, not in bytes as in the rest of the decoder */
1914                 s->diracdsp.add_rect_clamped(frame + start*p->stride, mctmp, p->stride,
1915                                              (int16_t*)(p->idwt.buf) + start*(p->idwt.stride >> 1), (p->idwt.stride >> 1), p->width, h);
1916
1917                 dsty += p->ybsep;
1918             }
1919         }
1920     }
1921
1922
1923     return 0;
1924 }
1925
1926 static int get_buffer_with_edge(AVCodecContext *avctx, AVFrame *f, int flags)
1927 {
1928     int ret, i;
1929     int chroma_x_shift, chroma_y_shift;
1930     avcodec_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift, &chroma_y_shift);
1931
1932     f->width  = avctx->width  + 2 * EDGE_WIDTH;
1933     f->height = avctx->height + 2 * EDGE_WIDTH + 2;
1934     ret = ff_get_buffer(avctx, f, flags);
1935     if (ret < 0)
1936         return ret;
1937
1938     for (i = 0; f->data[i]; i++) {
1939         int offset = (EDGE_WIDTH >> (i && i<3 ? chroma_y_shift : 0)) *
1940                      f->linesize[i] + 32;
1941         f->data[i] += offset;
1942     }
1943     f->width  = avctx->width;
1944     f->height = avctx->height;
1945
1946     return 0;
1947 }
1948
1949 /**
1950  * Dirac Specification ->
1951  * 11.1.1 Picture Header. picture_header()
1952  */
1953 static int dirac_decode_picture_header(DiracContext *s)
1954 {
1955     unsigned retire, picnum;
1956     int i, j, ret;
1957     int64_t refdist, refnum;
1958     GetBitContext *gb = &s->gb;
1959
1960     /* [DIRAC_STD] 11.1.1 Picture Header. picture_header() PICTURE_NUM */
1961     picnum = s->current_picture->avframe->display_picture_number = get_bits_long(gb, 32);
1962
1963
1964     av_log(s->avctx,AV_LOG_DEBUG,"PICTURE_NUM: %d\n",picnum);
1965
1966     /* if this is the first keyframe after a sequence header, start our
1967        reordering from here */
1968     if (s->frame_number < 0)
1969         s->frame_number = picnum;
1970
1971     s->ref_pics[0] = s->ref_pics[1] = NULL;
1972     for (i = 0; i < s->num_refs; i++) {
1973         refnum = (picnum + dirac_get_se_golomb(gb)) & 0xFFFFFFFF;
1974         refdist = INT64_MAX;
1975
1976         /* find the closest reference to the one we want */
1977         /* Jordi: this is needed if the referenced picture hasn't yet arrived */
1978         for (j = 0; j < MAX_REFERENCE_FRAMES && refdist; j++)
1979             if (s->ref_frames[j]
1980                 && FFABS(s->ref_frames[j]->avframe->display_picture_number - refnum) < refdist) {
1981                 s->ref_pics[i] = s->ref_frames[j];
1982                 refdist = FFABS(s->ref_frames[j]->avframe->display_picture_number - refnum);
1983             }
1984
1985         if (!s->ref_pics[i] || refdist)
1986             av_log(s->avctx, AV_LOG_DEBUG, "Reference not found\n");
1987
1988         /* if there were no references at all, allocate one */
1989         if (!s->ref_pics[i])
1990             for (j = 0; j < MAX_FRAMES; j++)
1991                 if (!s->all_frames[j].avframe->data[0]) {
1992                     s->ref_pics[i] = &s->all_frames[j];
1993                     ret = get_buffer_with_edge(s->avctx, s->ref_pics[i]->avframe, AV_GET_BUFFER_FLAG_REF);
1994                     if (ret < 0)
1995                         return ret;
1996                     break;
1997                 }
1998
1999         if (!s->ref_pics[i]) {
2000             av_log(s->avctx, AV_LOG_ERROR, "Reference could not be allocated\n");
2001             return AVERROR_INVALIDDATA;
2002         }
2003
2004     }
2005
2006     /* retire the reference frames that are not used anymore */
2007     if (s->current_picture->reference) {
2008         retire = (picnum + dirac_get_se_golomb(gb)) & 0xFFFFFFFF;
2009         if (retire != picnum) {
2010             DiracFrame *retire_pic = remove_frame(s->ref_frames, retire);
2011
2012             if (retire_pic)
2013                 retire_pic->reference &= DELAYED_PIC_REF;
2014             else
2015                 av_log(s->avctx, AV_LOG_DEBUG, "Frame to retire not found\n");
2016         }
2017
2018         /* if reference array is full, remove the oldest as per the spec */
2019         while (add_frame(s->ref_frames, MAX_REFERENCE_FRAMES, s->current_picture)) {
2020             av_log(s->avctx, AV_LOG_ERROR, "Reference frame overflow\n");
2021             remove_frame(s->ref_frames, s->ref_frames[0]->avframe->display_picture_number)->reference &= DELAYED_PIC_REF;
2022         }
2023     }
2024
2025     if (s->num_refs) {
2026         ret = dirac_unpack_prediction_parameters(s);  /* [DIRAC_STD] 11.2 Picture Prediction Data. picture_prediction() */
2027         if (ret < 0)
2028             return ret;
2029         ret = dirac_unpack_block_motion_data(s);      /* [DIRAC_STD] 12. Block motion data syntax                       */
2030         if (ret < 0)
2031             return ret;
2032     }
2033     ret = dirac_unpack_idwt_params(s);                /* [DIRAC_STD] 11.3 Wavelet transform data                        */
2034     if (ret < 0)
2035         return ret;
2036
2037     init_planes(s);
2038     return 0;
2039 }
2040
2041 static int get_delayed_pic(DiracContext *s, AVFrame *picture, int *got_frame)
2042 {
2043     DiracFrame *out = s->delay_frames[0];
2044     int i, out_idx  = 0;
2045     int ret;
2046
2047     /* find frame with lowest picture number */
2048     for (i = 1; s->delay_frames[i]; i++)
2049         if (s->delay_frames[i]->avframe->display_picture_number < out->avframe->display_picture_number) {
2050             out     = s->delay_frames[i];
2051             out_idx = i;
2052         }
2053
2054     for (i = out_idx; s->delay_frames[i]; i++)
2055         s->delay_frames[i] = s->delay_frames[i+1];
2056
2057     if (out) {
2058         out->reference ^= DELAYED_PIC_REF;
2059         if((ret = av_frame_ref(picture, out->avframe)) < 0)
2060             return ret;
2061         *got_frame = 1;
2062     }
2063
2064     return 0;
2065 }
2066
2067 /**
2068  * Dirac Specification ->
2069  * 9.6 Parse Info Header Syntax. parse_info()
2070  * 4 byte start code + byte parse code + 4 byte size + 4 byte previous size
2071  */
2072 #define DATA_UNIT_HEADER_SIZE 13
2073
2074 /* [DIRAC_STD] dirac_decode_data_unit makes reference to the while defined in 9.3
2075    inside the function parse_sequence() */
2076 static int dirac_decode_data_unit(AVCodecContext *avctx, const uint8_t *buf, int size)
2077 {
2078     DiracContext *s   = avctx->priv_data;
2079     DiracFrame *pic   = NULL;
2080     AVDiracSeqHeader *dsh;
2081     int ret, i;
2082     uint8_t parse_code;
2083     unsigned tmp;
2084
2085     if (size < DATA_UNIT_HEADER_SIZE)
2086         return AVERROR_INVALIDDATA;
2087
2088     parse_code = buf[4];
2089
2090     init_get_bits(&s->gb, &buf[13], 8*(size - DATA_UNIT_HEADER_SIZE));
2091
2092     if (parse_code == DIRAC_PCODE_SEQ_HEADER) {
2093         if (s->seen_sequence_header)
2094             return 0;
2095
2096         /* [DIRAC_STD] 10. Sequence header */
2097         ret = av_dirac_parse_sequence_header(&dsh, buf + DATA_UNIT_HEADER_SIZE, size - DATA_UNIT_HEADER_SIZE, avctx);
2098         if (ret < 0) {
2099             av_log(avctx, AV_LOG_ERROR, "error parsing sequence header");
2100             return ret;
2101         }
2102
2103         if (CALC_PADDING((int64_t)dsh->width, MAX_DWT_LEVELS) * CALC_PADDING((int64_t)dsh->height, MAX_DWT_LEVELS) > avctx->max_pixels)
2104             ret = AVERROR(ERANGE);
2105         if (ret >= 0)
2106             ret = ff_set_dimensions(avctx, dsh->width, dsh->height);
2107         if (ret < 0) {
2108             av_freep(&dsh);
2109             return ret;
2110         }
2111
2112         ff_set_sar(avctx, dsh->sample_aspect_ratio);
2113         avctx->pix_fmt         = dsh->pix_fmt;
2114         avctx->color_range     = dsh->color_range;
2115         avctx->color_trc       = dsh->color_trc;
2116         avctx->color_primaries = dsh->color_primaries;
2117         avctx->colorspace      = dsh->colorspace;
2118         avctx->profile         = dsh->profile;
2119         avctx->level           = dsh->level;
2120         avctx->framerate       = dsh->framerate;
2121         s->bit_depth           = dsh->bit_depth;
2122         s->version.major       = dsh->version.major;
2123         s->version.minor       = dsh->version.minor;
2124         s->seq                 = *dsh;
2125         av_freep(&dsh);
2126
2127         s->pshift = s->bit_depth > 8;
2128
2129         avcodec_get_chroma_sub_sample(avctx->pix_fmt, &s->chroma_x_shift, &s->chroma_y_shift);
2130
2131         ret = alloc_sequence_buffers(s);
2132         if (ret < 0)
2133             return ret;
2134
2135         s->seen_sequence_header = 1;
2136     } else if (parse_code == DIRAC_PCODE_END_SEQ) { /* [DIRAC_STD] End of Sequence */
2137         free_sequence_buffers(s);
2138         s->seen_sequence_header = 0;
2139     } else if (parse_code == DIRAC_PCODE_AUX) {
2140         if (buf[13] == 1) {     /* encoder implementation/version */
2141             int ver[3];
2142             /* versions older than 1.0.8 don't store quant delta for
2143                subbands with only one codeblock */
2144             if (sscanf(buf+14, "Schroedinger %d.%d.%d", ver, ver+1, ver+2) == 3)
2145                 if (ver[0] == 1 && ver[1] == 0 && ver[2] <= 7)
2146                     s->old_delta_quant = 1;
2147         }
2148     } else if (parse_code & 0x8) {  /* picture data unit */
2149         if (!s->seen_sequence_header) {
2150             av_log(avctx, AV_LOG_DEBUG, "Dropping frame without sequence header\n");
2151             return AVERROR_INVALIDDATA;
2152         }
2153
2154         /* find an unused frame */
2155         for (i = 0; i < MAX_FRAMES; i++)
2156             if (s->all_frames[i].avframe->data[0] == NULL)
2157                 pic = &s->all_frames[i];
2158         if (!pic) {
2159             av_log(avctx, AV_LOG_ERROR, "framelist full\n");
2160             return AVERROR_INVALIDDATA;
2161         }
2162
2163         av_frame_unref(pic->avframe);
2164
2165         /* [DIRAC_STD] Defined in 9.6.1 ... */
2166         tmp            =  parse_code & 0x03;                   /* [DIRAC_STD] num_refs()      */
2167         if (tmp > 2) {
2168             av_log(avctx, AV_LOG_ERROR, "num_refs of 3\n");
2169             return AVERROR_INVALIDDATA;
2170         }
2171         s->num_refs      = tmp;
2172         s->is_arith      = (parse_code & 0x48) == 0x08;          /* [DIRAC_STD] using_ac()            */
2173         s->low_delay     = (parse_code & 0x88) == 0x88;          /* [DIRAC_STD] is_low_delay()        */
2174         s->core_syntax   = (parse_code & 0x88) == 0x08;          /* [DIRAC_STD] is_core_syntax()      */
2175         s->ld_picture    = (parse_code & 0xF8) == 0xC8;          /* [DIRAC_STD] is_ld_picture()       */
2176         s->hq_picture    = (parse_code & 0xF8) == 0xE8;          /* [DIRAC_STD] is_hq_picture()       */
2177         s->dc_prediction = (parse_code & 0x28) == 0x08;          /* [DIRAC_STD] using_dc_prediction() */
2178         pic->reference   = (parse_code & 0x0C) == 0x0C;          /* [DIRAC_STD] is_reference()        */
2179         pic->avframe->key_frame = s->num_refs == 0;              /* [DIRAC_STD] is_intra()            */
2180         pic->avframe->pict_type = s->num_refs + 1;               /* Definition of AVPictureType in avutil.h */
2181
2182         /* VC-2 Low Delay has a different parse code than the Dirac Low Delay */
2183         if (s->version.minor == 2 && parse_code == 0x88)
2184             s->ld_picture = 1;
2185
2186         if (s->low_delay && !(s->ld_picture || s->hq_picture) ) {
2187             av_log(avctx, AV_LOG_ERROR, "Invalid low delay flag\n");
2188             return AVERROR_INVALIDDATA;
2189         }
2190
2191         if ((ret = get_buffer_with_edge(avctx, pic->avframe, (parse_code & 0x0C) == 0x0C ? AV_GET_BUFFER_FLAG_REF : 0)) < 0)
2192             return ret;
2193         s->current_picture = pic;
2194         s->plane[0].stride = pic->avframe->linesize[0];
2195         s->plane[1].stride = pic->avframe->linesize[1];
2196         s->plane[2].stride = pic->avframe->linesize[2];
2197
2198         if (alloc_buffers(s, FFMAX3(FFABS(s->plane[0].stride), FFABS(s->plane[1].stride), FFABS(s->plane[2].stride))) < 0)
2199             return AVERROR(ENOMEM);
2200
2201         /* [DIRAC_STD] 11.1 Picture parse. picture_parse() */
2202         ret = dirac_decode_picture_header(s);
2203         if (ret < 0)
2204             return ret;
2205
2206         /* [DIRAC_STD] 13.0 Transform data syntax. transform_data() */
2207         ret = dirac_decode_frame_internal(s);
2208         if (ret < 0)
2209             return ret;
2210     }
2211     return 0;
2212 }
2213
2214 static int dirac_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *pkt)
2215 {
2216     DiracContext *s     = avctx->priv_data;
2217     AVFrame *picture    = data;
2218     uint8_t *buf        = pkt->data;
2219     int buf_size        = pkt->size;
2220     int i, buf_idx      = 0;
2221     int ret;
2222     unsigned data_unit_size;
2223
2224     /* release unused frames */
2225     for (i = 0; i < MAX_FRAMES; i++)
2226         if (s->all_frames[i].avframe->data[0] && !s->all_frames[i].reference) {
2227             av_frame_unref(s->all_frames[i].avframe);
2228             memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated));
2229         }
2230
2231     s->current_picture = NULL;
2232     *got_frame = 0;
2233
2234     /* end of stream, so flush delayed pics */
2235     if (buf_size == 0)
2236         return get_delayed_pic(s, (AVFrame *)data, got_frame);
2237
2238     for (;;) {
2239         /*[DIRAC_STD] Here starts the code from parse_info() defined in 9.6
2240           [DIRAC_STD] PARSE_INFO_PREFIX = "BBCD" as defined in ISO/IEC 646
2241           BBCD start code search */
2242         for (; buf_idx + DATA_UNIT_HEADER_SIZE < buf_size; buf_idx++) {
2243             if (buf[buf_idx  ] == 'B' && buf[buf_idx+1] == 'B' &&
2244                 buf[buf_idx+2] == 'C' && buf[buf_idx+3] == 'D')
2245                 break;
2246         }
2247         /* BBCD found or end of data */
2248         if (buf_idx + DATA_UNIT_HEADER_SIZE >= buf_size)
2249             break;
2250
2251         data_unit_size = AV_RB32(buf+buf_idx+5);
2252         if (data_unit_size > buf_size - buf_idx || !data_unit_size) {
2253             if(data_unit_size > buf_size - buf_idx)
2254             av_log(s->avctx, AV_LOG_ERROR,
2255                    "Data unit with size %d is larger than input buffer, discarding\n",
2256                    data_unit_size);
2257             buf_idx += 4;
2258             continue;
2259         }
2260         /* [DIRAC_STD] dirac_decode_data_unit makes reference to the while defined in 9.3 inside the function parse_sequence() */
2261         ret = dirac_decode_data_unit(avctx, buf+buf_idx, data_unit_size);
2262         if (ret < 0)
2263         {
2264             av_log(s->avctx, AV_LOG_ERROR,"Error in dirac_decode_data_unit\n");
2265             return ret;
2266         }
2267         buf_idx += data_unit_size;
2268     }
2269
2270     if (!s->current_picture)
2271         return buf_size;
2272
2273     if (s->current_picture->avframe->display_picture_number > s->frame_number) {
2274         DiracFrame *delayed_frame = remove_frame(s->delay_frames, s->frame_number);
2275
2276         s->current_picture->reference |= DELAYED_PIC_REF;
2277
2278         if (add_frame(s->delay_frames, MAX_DELAY, s->current_picture)) {
2279             int min_num = s->delay_frames[0]->avframe->display_picture_number;
2280             /* Too many delayed frames, so we display the frame with the lowest pts */
2281             av_log(avctx, AV_LOG_ERROR, "Delay frame overflow\n");
2282
2283             for (i = 1; s->delay_frames[i]; i++)
2284                 if (s->delay_frames[i]->avframe->display_picture_number < min_num)
2285                     min_num = s->delay_frames[i]->avframe->display_picture_number;
2286
2287             delayed_frame = remove_frame(s->delay_frames, min_num);
2288             add_frame(s->delay_frames, MAX_DELAY, s->current_picture);
2289         }
2290
2291         if (delayed_frame) {
2292             delayed_frame->reference ^= DELAYED_PIC_REF;
2293             if((ret=av_frame_ref(data, delayed_frame->avframe)) < 0)
2294                 return ret;
2295             *got_frame = 1;
2296         }
2297     } else if (s->current_picture->avframe->display_picture_number == s->frame_number) {
2298         /* The right frame at the right time :-) */
2299         if((ret=av_frame_ref(data, s->current_picture->avframe)) < 0)
2300             return ret;
2301         *got_frame = 1;
2302     }
2303
2304     if (*got_frame)
2305         s->frame_number = picture->display_picture_number + 1;
2306
2307     return buf_idx;
2308 }
2309
2310 AVCodec ff_dirac_decoder = {
2311     .name           = "dirac",
2312     .long_name      = NULL_IF_CONFIG_SMALL("BBC Dirac VC-2"),
2313     .type           = AVMEDIA_TYPE_VIDEO,
2314     .id             = AV_CODEC_ID_DIRAC,
2315     .priv_data_size = sizeof(DiracContext),
2316     .init           = dirac_decode_init,
2317     .close          = dirac_decode_end,
2318     .decode         = dirac_decode_frame,
2319     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS | AV_CODEC_CAP_DR1,
2320     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
2321     .flush          = dirac_decode_flush,
2322 };