You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2331 lines
80KB

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