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.

2342 lines
81KB

  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. int64_t 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. if (b->quant > (DIRAC_MAX_QUANT_INDEX - 1)) {
  570. av_log(s->avctx, AV_LOG_ERROR, "Unsupported quant %d\n", b->quant);
  571. b->quant = 0;
  572. }
  573. align_get_bits(&s->gb);
  574. b->coeff_data = s->gb.buffer + get_bits_count(&s->gb)/8;
  575. b->length = FFMIN(b->length, FFMAX(get_bits_left(&s->gb)/8, 0));
  576. skip_bits_long(&s->gb, b->length*8);
  577. }
  578. }
  579. /* arithmetic coding has inter-level dependencies, so we can only execute one level at a time */
  580. if (s->is_arith)
  581. avctx->execute(avctx, decode_subband_arith, &s->plane[comp].band[level][!!level],
  582. NULL, 4-!!level, sizeof(SubBand));
  583. }
  584. /* golomb coding has no inter-level dependencies, so we can execute all subbands in parallel */
  585. if (!s->is_arith)
  586. avctx->execute(avctx, decode_subband_golomb, bands, NULL, num_bands, sizeof(SubBand*));
  587. }
  588. #define PARSE_VALUES(type, x, gb, ebits, buf1, buf2) \
  589. type *buf = (type *)buf1; \
  590. buf[x] = coeff_unpack_golomb(gb, qfactor, qoffset); \
  591. if (get_bits_count(gb) >= ebits) \
  592. return; \
  593. if (buf2) { \
  594. buf = (type *)buf2; \
  595. buf[x] = coeff_unpack_golomb(gb, qfactor, qoffset); \
  596. if (get_bits_count(gb) >= ebits) \
  597. return; \
  598. } \
  599. static void decode_subband(DiracContext *s, GetBitContext *gb, int quant,
  600. int slice_x, int slice_y, int bits_end,
  601. SubBand *b1, SubBand *b2)
  602. {
  603. int left = b1->width * slice_x / s->num_x;
  604. int right = b1->width *(slice_x+1) / s->num_x;
  605. int top = b1->height * slice_y / s->num_y;
  606. int bottom = b1->height *(slice_y+1) / s->num_y;
  607. int qfactor, qoffset;
  608. uint8_t *buf1 = b1->ibuf + top * b1->stride;
  609. uint8_t *buf2 = b2 ? b2->ibuf + top * b2->stride: NULL;
  610. int x, y;
  611. if (quant > (DIRAC_MAX_QUANT_INDEX - 1)) {
  612. av_log(s->avctx, AV_LOG_ERROR, "Unsupported quant %d\n", quant);
  613. return;
  614. }
  615. qfactor = ff_dirac_qscale_tab[quant];
  616. qoffset = ff_dirac_qoffset_intra_tab[quant] + 2;
  617. /* we have to constantly check for overread since the spec explicitly
  618. requires this, with the meaning that all remaining coeffs are set to 0 */
  619. if (get_bits_count(gb) >= bits_end)
  620. return;
  621. if (s->pshift) {
  622. for (y = top; y < bottom; y++) {
  623. for (x = left; x < right; x++) {
  624. PARSE_VALUES(int32_t, x, gb, bits_end, buf1, buf2);
  625. }
  626. buf1 += b1->stride;
  627. if (buf2)
  628. buf2 += b2->stride;
  629. }
  630. }
  631. else {
  632. for (y = top; y < bottom; y++) {
  633. for (x = left; x < right; x++) {
  634. PARSE_VALUES(int16_t, x, gb, bits_end, buf1, buf2);
  635. }
  636. buf1 += b1->stride;
  637. if (buf2)
  638. buf2 += b2->stride;
  639. }
  640. }
  641. }
  642. /**
  643. * Dirac Specification ->
  644. * 13.5.2 Slices. slice(sx,sy)
  645. */
  646. static int decode_lowdelay_slice(AVCodecContext *avctx, void *arg)
  647. {
  648. DiracContext *s = avctx->priv_data;
  649. DiracSlice *slice = arg;
  650. GetBitContext *gb = &slice->gb;
  651. enum dirac_subband orientation;
  652. int level, quant, chroma_bits, chroma_end;
  653. int quant_base = get_bits(gb, 7); /*[DIRAC_STD] qindex */
  654. int length_bits = av_log2(8 * slice->bytes)+1;
  655. int luma_bits = get_bits_long(gb, length_bits);
  656. int luma_end = get_bits_count(gb) + FFMIN(luma_bits, get_bits_left(gb));
  657. /* [DIRAC_STD] 13.5.5.2 luma_slice_band */
  658. for (level = 0; level < s->wavelet_depth; level++)
  659. for (orientation = !!level; orientation < 4; orientation++) {
  660. quant = FFMAX(quant_base - s->lowdelay.quant[level][orientation], 0);
  661. decode_subband(s, gb, quant, slice->slice_x, slice->slice_y, luma_end,
  662. &s->plane[0].band[level][orientation], NULL);
  663. }
  664. /* consume any unused bits from luma */
  665. skip_bits_long(gb, get_bits_count(gb) - luma_end);
  666. chroma_bits = 8*slice->bytes - 7 - length_bits - luma_bits;
  667. chroma_end = get_bits_count(gb) + FFMIN(chroma_bits, get_bits_left(gb));
  668. /* [DIRAC_STD] 13.5.5.3 chroma_slice_band */
  669. for (level = 0; level < s->wavelet_depth; level++)
  670. for (orientation = !!level; orientation < 4; orientation++) {
  671. quant = FFMAX(quant_base - s->lowdelay.quant[level][orientation], 0);
  672. decode_subband(s, gb, quant, slice->slice_x, slice->slice_y, chroma_end,
  673. &s->plane[1].band[level][orientation],
  674. &s->plane[2].band[level][orientation]);
  675. }
  676. return 0;
  677. }
  678. typedef struct SliceCoeffs {
  679. int left;
  680. int top;
  681. int tot_h;
  682. int tot_v;
  683. int tot;
  684. } SliceCoeffs;
  685. static int subband_coeffs(DiracContext *s, int x, int y, int p,
  686. SliceCoeffs c[MAX_DWT_LEVELS])
  687. {
  688. int level, coef = 0;
  689. for (level = 0; level < s->wavelet_depth; level++) {
  690. SliceCoeffs *o = &c[level];
  691. SubBand *b = &s->plane[p].band[level][3]; /* orientation doens't matter */
  692. o->top = b->height * y / s->num_y;
  693. o->left = b->width * x / s->num_x;
  694. o->tot_h = ((b->width * (x + 1)) / s->num_x) - o->left;
  695. o->tot_v = ((b->height * (y + 1)) / s->num_y) - o->top;
  696. o->tot = o->tot_h*o->tot_v;
  697. coef += o->tot * (4 - !!level);
  698. }
  699. return coef;
  700. }
  701. /**
  702. * VC-2 Specification ->
  703. * 13.5.3 hq_slice(sx,sy)
  704. */
  705. static int decode_hq_slice(DiracContext *s, DiracSlice *slice, uint8_t *tmp_buf)
  706. {
  707. int i, level, orientation, quant_idx;
  708. int qfactor[MAX_DWT_LEVELS][4], qoffset[MAX_DWT_LEVELS][4];
  709. GetBitContext *gb = &slice->gb;
  710. SliceCoeffs coeffs_num[MAX_DWT_LEVELS];
  711. skip_bits_long(gb, 8*s->highquality.prefix_bytes);
  712. quant_idx = get_bits(gb, 8);
  713. if (quant_idx > DIRAC_MAX_QUANT_INDEX - 1) {
  714. av_log(s->avctx, AV_LOG_ERROR, "Invalid quantization index - %i\n", quant_idx);
  715. return AVERROR_INVALIDDATA;
  716. }
  717. /* Slice quantization (slice_quantizers() in the specs) */
  718. for (level = 0; level < s->wavelet_depth; level++) {
  719. for (orientation = !!level; orientation < 4; orientation++) {
  720. const int quant = FFMAX(quant_idx - s->lowdelay.quant[level][orientation], 0);
  721. qfactor[level][orientation] = ff_dirac_qscale_tab[quant];
  722. qoffset[level][orientation] = ff_dirac_qoffset_intra_tab[quant] + 2;
  723. }
  724. }
  725. /* Luma + 2 Chroma planes */
  726. for (i = 0; i < 3; i++) {
  727. int coef_num, coef_par, off = 0;
  728. int64_t length = s->highquality.size_scaler*get_bits(gb, 8);
  729. int64_t bits_end = get_bits_count(gb) + 8*length;
  730. const uint8_t *addr = align_get_bits(gb);
  731. if (length*8 > get_bits_left(gb)) {
  732. av_log(s->avctx, AV_LOG_ERROR, "end too far away\n");
  733. return AVERROR_INVALIDDATA;
  734. }
  735. coef_num = subband_coeffs(s, slice->slice_x, slice->slice_y, i, coeffs_num);
  736. if (s->pshift)
  737. coef_par = ff_dirac_golomb_read_32bit(s->reader_ctx, addr,
  738. length, tmp_buf, coef_num);
  739. else
  740. coef_par = ff_dirac_golomb_read_16bit(s->reader_ctx, addr,
  741. length, tmp_buf, coef_num);
  742. if (coef_num > coef_par) {
  743. const int start_b = coef_par * (1 << (s->pshift + 1));
  744. const int end_b = coef_num * (1 << (s->pshift + 1));
  745. memset(&tmp_buf[start_b], 0, end_b - start_b);
  746. }
  747. for (level = 0; level < s->wavelet_depth; level++) {
  748. const SliceCoeffs *c = &coeffs_num[level];
  749. for (orientation = !!level; orientation < 4; orientation++) {
  750. const SubBand *b1 = &s->plane[i].band[level][orientation];
  751. uint8_t *buf = b1->ibuf + c->top * b1->stride + (c->left << (s->pshift + 1));
  752. /* Change to c->tot_h <= 4 for AVX2 dequantization */
  753. const int qfunc = s->pshift + 2*(c->tot_h <= 2);
  754. s->diracdsp.dequant_subband[qfunc](&tmp_buf[off], buf, b1->stride,
  755. qfactor[level][orientation],
  756. qoffset[level][orientation],
  757. c->tot_v, c->tot_h);
  758. off += c->tot << (s->pshift + 1);
  759. }
  760. }
  761. skip_bits_long(gb, bits_end - get_bits_count(gb));
  762. }
  763. return 0;
  764. }
  765. static int decode_hq_slice_row(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
  766. {
  767. int i;
  768. DiracContext *s = avctx->priv_data;
  769. DiracSlice *slices = ((DiracSlice *)arg) + s->num_x*jobnr;
  770. uint8_t *thread_buf = &s->thread_buf[s->thread_buf_size*threadnr];
  771. for (i = 0; i < s->num_x; i++)
  772. decode_hq_slice(s, &slices[i], thread_buf);
  773. return 0;
  774. }
  775. /**
  776. * Dirac Specification ->
  777. * 13.5.1 low_delay_transform_data()
  778. */
  779. static int decode_lowdelay(DiracContext *s)
  780. {
  781. AVCodecContext *avctx = s->avctx;
  782. int slice_x, slice_y, bufsize;
  783. int64_t coef_buf_size, bytes = 0;
  784. const uint8_t *buf;
  785. DiracSlice *slices;
  786. SliceCoeffs tmp[MAX_DWT_LEVELS];
  787. int slice_num = 0;
  788. if (s->slice_params_num_buf != (s->num_x * s->num_y)) {
  789. s->slice_params_buf = av_realloc_f(s->slice_params_buf, s->num_x * s->num_y, sizeof(DiracSlice));
  790. if (!s->slice_params_buf) {
  791. av_log(s->avctx, AV_LOG_ERROR, "slice params buffer allocation failure\n");
  792. s->slice_params_num_buf = 0;
  793. return AVERROR(ENOMEM);
  794. }
  795. s->slice_params_num_buf = s->num_x * s->num_y;
  796. }
  797. slices = s->slice_params_buf;
  798. /* 8 becacuse that's how much the golomb reader could overread junk data
  799. * from another plane/slice at most, and 512 because SIMD */
  800. coef_buf_size = subband_coeffs(s, s->num_x - 1, s->num_y - 1, 0, tmp) + 8;
  801. coef_buf_size = (coef_buf_size << (1 + s->pshift)) + 512;
  802. if (s->threads_num_buf != avctx->thread_count ||
  803. s->thread_buf_size != coef_buf_size) {
  804. s->threads_num_buf = avctx->thread_count;
  805. s->thread_buf_size = coef_buf_size;
  806. s->thread_buf = av_realloc_f(s->thread_buf, avctx->thread_count, s->thread_buf_size);
  807. if (!s->thread_buf) {
  808. av_log(s->avctx, AV_LOG_ERROR, "thread buffer allocation failure\n");
  809. return AVERROR(ENOMEM);
  810. }
  811. }
  812. align_get_bits(&s->gb);
  813. /*[DIRAC_STD] 13.5.2 Slices. slice(sx,sy) */
  814. buf = s->gb.buffer + get_bits_count(&s->gb)/8;
  815. bufsize = get_bits_left(&s->gb);
  816. if (s->hq_picture) {
  817. int i;
  818. for (slice_y = 0; bufsize > 0 && slice_y < s->num_y; slice_y++) {
  819. for (slice_x = 0; bufsize > 0 && slice_x < s->num_x; slice_x++) {
  820. bytes = s->highquality.prefix_bytes + 1;
  821. for (i = 0; i < 3; i++) {
  822. if (bytes <= bufsize/8)
  823. bytes += buf[bytes] * s->highquality.size_scaler + 1;
  824. }
  825. if (bytes >= INT_MAX || bytes*8 > bufsize) {
  826. av_log(s->avctx, AV_LOG_ERROR, "too many bytes\n");
  827. return AVERROR_INVALIDDATA;
  828. }
  829. slices[slice_num].bytes = bytes;
  830. slices[slice_num].slice_x = slice_x;
  831. slices[slice_num].slice_y = slice_y;
  832. init_get_bits(&slices[slice_num].gb, buf, bufsize);
  833. slice_num++;
  834. buf += bytes;
  835. if (bufsize/8 >= bytes)
  836. bufsize -= bytes*8;
  837. else
  838. bufsize = 0;
  839. }
  840. }
  841. if (s->num_x*s->num_y != slice_num) {
  842. av_log(s->avctx, AV_LOG_ERROR, "too few slices\n");
  843. return AVERROR_INVALIDDATA;
  844. }
  845. avctx->execute2(avctx, decode_hq_slice_row, slices, NULL, s->num_y);
  846. } else {
  847. for (slice_y = 0; bufsize > 0 && slice_y < s->num_y; slice_y++) {
  848. for (slice_x = 0; bufsize > 0 && slice_x < s->num_x; slice_x++) {
  849. bytes = (slice_num+1) * (int64_t)s->lowdelay.bytes.num / s->lowdelay.bytes.den
  850. - slice_num * (int64_t)s->lowdelay.bytes.num / s->lowdelay.bytes.den;
  851. if (bytes >= INT_MAX || bytes*8 > bufsize) {
  852. av_log(s->avctx, AV_LOG_ERROR, "too many bytes\n");
  853. return AVERROR_INVALIDDATA;
  854. }
  855. slices[slice_num].bytes = bytes;
  856. slices[slice_num].slice_x = slice_x;
  857. slices[slice_num].slice_y = slice_y;
  858. init_get_bits(&slices[slice_num].gb, buf, bufsize);
  859. slice_num++;
  860. buf += bytes;
  861. if (bufsize/8 >= bytes)
  862. bufsize -= bytes*8;
  863. else
  864. bufsize = 0;
  865. }
  866. }
  867. avctx->execute(avctx, decode_lowdelay_slice, slices, NULL, slice_num,
  868. sizeof(DiracSlice)); /* [DIRAC_STD] 13.5.2 Slices */
  869. }
  870. if (s->dc_prediction) {
  871. if (s->pshift) {
  872. intra_dc_prediction_10(&s->plane[0].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
  873. intra_dc_prediction_10(&s->plane[1].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
  874. intra_dc_prediction_10(&s->plane[2].band[0][0]); /* [DIRAC_STD] 13.3 intra_dc_prediction() */
  875. } else {
  876. intra_dc_prediction_8(&s->plane[0].band[0][0]);
  877. intra_dc_prediction_8(&s->plane[1].band[0][0]);
  878. intra_dc_prediction_8(&s->plane[2].band[0][0]);
  879. }
  880. }
  881. return 0;
  882. }
  883. static void init_planes(DiracContext *s)
  884. {
  885. int i, w, h, level, orientation;
  886. for (i = 0; i < 3; i++) {
  887. Plane *p = &s->plane[i];
  888. p->width = s->seq.width >> (i ? s->chroma_x_shift : 0);
  889. p->height = s->seq.height >> (i ? s->chroma_y_shift : 0);
  890. p->idwt.width = w = CALC_PADDING(p->width , s->wavelet_depth);
  891. p->idwt.height = h = CALC_PADDING(p->height, s->wavelet_depth);
  892. p->idwt.stride = FFALIGN(p->idwt.width, 8) << (1 + s->pshift);
  893. for (level = s->wavelet_depth-1; level >= 0; level--) {
  894. w = w>>1;
  895. h = h>>1;
  896. for (orientation = !!level; orientation < 4; orientation++) {
  897. SubBand *b = &p->band[level][orientation];
  898. b->pshift = s->pshift;
  899. b->ibuf = p->idwt.buf;
  900. b->level = level;
  901. b->stride = p->idwt.stride << (s->wavelet_depth - level);
  902. b->width = w;
  903. b->height = h;
  904. b->orientation = orientation;
  905. if (orientation & 1)
  906. b->ibuf += w << (1+b->pshift);
  907. if (orientation > 1)
  908. b->ibuf += (b->stride>>1);
  909. if (level)
  910. b->parent = &p->band[level-1][orientation];
  911. }
  912. }
  913. if (i > 0) {
  914. p->xblen = s->plane[0].xblen >> s->chroma_x_shift;
  915. p->yblen = s->plane[0].yblen >> s->chroma_y_shift;
  916. p->xbsep = s->plane[0].xbsep >> s->chroma_x_shift;
  917. p->ybsep = s->plane[0].ybsep >> s->chroma_y_shift;
  918. }
  919. p->xoffset = (p->xblen - p->xbsep)/2;
  920. p->yoffset = (p->yblen - p->ybsep)/2;
  921. }
  922. }
  923. /**
  924. * Unpack the motion compensation parameters
  925. * Dirac Specification ->
  926. * 11.2 Picture prediction data. picture_prediction()
  927. */
  928. static int dirac_unpack_prediction_parameters(DiracContext *s)
  929. {
  930. static const uint8_t default_blen[] = { 4, 12, 16, 24 };
  931. GetBitContext *gb = &s->gb;
  932. unsigned idx, ref;
  933. align_get_bits(gb);
  934. /* [DIRAC_STD] 11.2.2 Block parameters. block_parameters() */
  935. /* Luma and Chroma are equal. 11.2.3 */
  936. idx = get_interleaved_ue_golomb(gb); /* [DIRAC_STD] index */
  937. if (idx > 4) {
  938. av_log(s->avctx, AV_LOG_ERROR, "Block prediction index too high\n");
  939. return AVERROR_INVALIDDATA;
  940. }
  941. if (idx == 0) {
  942. s->plane[0].xblen = get_interleaved_ue_golomb(gb);
  943. s->plane[0].yblen = get_interleaved_ue_golomb(gb);
  944. s->plane[0].xbsep = get_interleaved_ue_golomb(gb);
  945. s->plane[0].ybsep = get_interleaved_ue_golomb(gb);
  946. } else {
  947. /*[DIRAC_STD] preset_block_params(index). Table 11.1 */
  948. s->plane[0].xblen = default_blen[idx-1];
  949. s->plane[0].yblen = default_blen[idx-1];
  950. s->plane[0].xbsep = 4 * idx;
  951. s->plane[0].ybsep = 4 * idx;
  952. }
  953. /*[DIRAC_STD] 11.2.4 motion_data_dimensions()
  954. Calculated in function dirac_unpack_block_motion_data */
  955. if (s->plane[0].xblen % (1 << s->chroma_x_shift) != 0 ||
  956. s->plane[0].yblen % (1 << s->chroma_y_shift) != 0 ||
  957. !s->plane[0].xblen || !s->plane[0].yblen) {
  958. av_log(s->avctx, AV_LOG_ERROR,
  959. "invalid x/y block length (%d/%d) for x/y chroma shift (%d/%d)\n",
  960. s->plane[0].xblen, s->plane[0].yblen, s->chroma_x_shift, s->chroma_y_shift);
  961. return AVERROR_INVALIDDATA;
  962. }
  963. 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) {
  964. av_log(s->avctx, AV_LOG_ERROR, "Block separation too small\n");
  965. return AVERROR_INVALIDDATA;
  966. }
  967. if (s->plane[0].xbsep > s->plane[0].xblen || s->plane[0].ybsep > s->plane[0].yblen) {
  968. av_log(s->avctx, AV_LOG_ERROR, "Block separation greater than size\n");
  969. return AVERROR_INVALIDDATA;
  970. }
  971. if (FFMAX(s->plane[0].xblen, s->plane[0].yblen) > MAX_BLOCKSIZE) {
  972. av_log(s->avctx, AV_LOG_ERROR, "Unsupported large block size\n");
  973. return AVERROR_PATCHWELCOME;
  974. }
  975. /*[DIRAC_STD] 11.2.5 Motion vector precision. motion_vector_precision()
  976. Read motion vector precision */
  977. s->mv_precision = get_interleaved_ue_golomb(gb);
  978. if (s->mv_precision > 3) {
  979. av_log(s->avctx, AV_LOG_ERROR, "MV precision finer than eighth-pel\n");
  980. return AVERROR_INVALIDDATA;
  981. }
  982. /*[DIRAC_STD] 11.2.6 Global motion. global_motion()
  983. Read the global motion compensation parameters */
  984. s->globalmc_flag = get_bits1(gb);
  985. if (s->globalmc_flag) {
  986. memset(s->globalmc, 0, sizeof(s->globalmc));
  987. /* [DIRAC_STD] pan_tilt(gparams) */
  988. for (ref = 0; ref < s->num_refs; ref++) {
  989. if (get_bits1(gb)) {
  990. s->globalmc[ref].pan_tilt[0] = dirac_get_se_golomb(gb);
  991. s->globalmc[ref].pan_tilt[1] = dirac_get_se_golomb(gb);
  992. }
  993. /* [DIRAC_STD] zoom_rotate_shear(gparams)
  994. zoom/rotation/shear parameters */
  995. if (get_bits1(gb)) {
  996. s->globalmc[ref].zrs_exp = get_interleaved_ue_golomb(gb);
  997. s->globalmc[ref].zrs[0][0] = dirac_get_se_golomb(gb);
  998. s->globalmc[ref].zrs[0][1] = dirac_get_se_golomb(gb);
  999. s->globalmc[ref].zrs[1][0] = dirac_get_se_golomb(gb);
  1000. s->globalmc[ref].zrs[1][1] = dirac_get_se_golomb(gb);
  1001. } else {
  1002. s->globalmc[ref].zrs[0][0] = 1;
  1003. s->globalmc[ref].zrs[1][1] = 1;
  1004. }
  1005. /* [DIRAC_STD] perspective(gparams) */
  1006. if (get_bits1(gb)) {
  1007. s->globalmc[ref].perspective_exp = get_interleaved_ue_golomb(gb);
  1008. s->globalmc[ref].perspective[0] = dirac_get_se_golomb(gb);
  1009. s->globalmc[ref].perspective[1] = dirac_get_se_golomb(gb);
  1010. }
  1011. if (s->globalmc[ref].perspective_exp + (uint64_t)s->globalmc[ref].zrs_exp > 30) {
  1012. return AVERROR_INVALIDDATA;
  1013. }
  1014. }
  1015. }
  1016. /*[DIRAC_STD] 11.2.7 Picture prediction mode. prediction_mode()
  1017. Picture prediction mode, not currently used. */
  1018. if (get_interleaved_ue_golomb(gb)) {
  1019. av_log(s->avctx, AV_LOG_ERROR, "Unknown picture prediction mode\n");
  1020. return AVERROR_INVALIDDATA;
  1021. }
  1022. /* [DIRAC_STD] 11.2.8 Reference picture weight. reference_picture_weights()
  1023. just data read, weight calculation will be done later on. */
  1024. s->weight_log2denom = 1;
  1025. s->weight[0] = 1;
  1026. s->weight[1] = 1;
  1027. if (get_bits1(gb)) {
  1028. s->weight_log2denom = get_interleaved_ue_golomb(gb);
  1029. if (s->weight_log2denom < 1 || s->weight_log2denom > 8) {
  1030. av_log(s->avctx, AV_LOG_ERROR, "weight_log2denom unsupported or invalid\n");
  1031. s->weight_log2denom = 1;
  1032. return AVERROR_INVALIDDATA;
  1033. }
  1034. s->weight[0] = dirac_get_se_golomb(gb);
  1035. if (s->num_refs == 2)
  1036. s->weight[1] = dirac_get_se_golomb(gb);
  1037. }
  1038. return 0;
  1039. }
  1040. /**
  1041. * Dirac Specification ->
  1042. * 11.3 Wavelet transform data. wavelet_transform()
  1043. */
  1044. static int dirac_unpack_idwt_params(DiracContext *s)
  1045. {
  1046. GetBitContext *gb = &s->gb;
  1047. int i, level;
  1048. unsigned tmp;
  1049. #define CHECKEDREAD(dst, cond, errmsg) \
  1050. tmp = get_interleaved_ue_golomb(gb); \
  1051. if (cond) { \
  1052. av_log(s->avctx, AV_LOG_ERROR, errmsg); \
  1053. return AVERROR_INVALIDDATA; \
  1054. }\
  1055. dst = tmp;
  1056. align_get_bits(gb);
  1057. s->zero_res = s->num_refs ? get_bits1(gb) : 0;
  1058. if (s->zero_res)
  1059. return 0;
  1060. /*[DIRAC_STD] 11.3.1 Transform parameters. transform_parameters() */
  1061. CHECKEDREAD(s->wavelet_idx, tmp > 6, "wavelet_idx is too big\n")
  1062. CHECKEDREAD(s->wavelet_depth, tmp > MAX_DWT_LEVELS || tmp < 1, "invalid number of DWT decompositions\n")
  1063. if (!s->low_delay) {
  1064. /* Codeblock parameters (core syntax only) */
  1065. if (get_bits1(gb)) {
  1066. for (i = 0; i <= s->wavelet_depth; i++) {
  1067. CHECKEDREAD(s->codeblock[i].width , tmp < 1 || tmp > (s->avctx->width >>s->wavelet_depth-i), "codeblock width invalid\n")
  1068. CHECKEDREAD(s->codeblock[i].height, tmp < 1 || tmp > (s->avctx->height>>s->wavelet_depth-i), "codeblock height invalid\n")
  1069. }
  1070. CHECKEDREAD(s->codeblock_mode, tmp > 1, "unknown codeblock mode\n")
  1071. }
  1072. else {
  1073. for (i = 0; i <= s->wavelet_depth; i++)
  1074. s->codeblock[i].width = s->codeblock[i].height = 1;
  1075. }
  1076. }
  1077. else {
  1078. s->num_x = get_interleaved_ue_golomb(gb);
  1079. s->num_y = get_interleaved_ue_golomb(gb);
  1080. if (s->num_x * s->num_y == 0 || s->num_x * (uint64_t)s->num_y > INT_MAX ||
  1081. s->num_x * (uint64_t)s->avctx->width > INT_MAX ||
  1082. s->num_y * (uint64_t)s->avctx->height > INT_MAX
  1083. ) {
  1084. av_log(s->avctx,AV_LOG_ERROR,"Invalid numx/y\n");
  1085. s->num_x = s->num_y = 0;
  1086. return AVERROR_INVALIDDATA;
  1087. }
  1088. if (s->ld_picture) {
  1089. s->lowdelay.bytes.num = get_interleaved_ue_golomb(gb);
  1090. s->lowdelay.bytes.den = get_interleaved_ue_golomb(gb);
  1091. if (s->lowdelay.bytes.den <= 0) {
  1092. av_log(s->avctx,AV_LOG_ERROR,"Invalid lowdelay.bytes.den\n");
  1093. return AVERROR_INVALIDDATA;
  1094. }
  1095. } else if (s->hq_picture) {
  1096. s->highquality.prefix_bytes = get_interleaved_ue_golomb(gb);
  1097. s->highquality.size_scaler = get_interleaved_ue_golomb(gb);
  1098. if (s->highquality.prefix_bytes >= INT_MAX / 8) {
  1099. av_log(s->avctx,AV_LOG_ERROR,"too many prefix bytes\n");
  1100. return AVERROR_INVALIDDATA;
  1101. }
  1102. }
  1103. /* [DIRAC_STD] 11.3.5 Quantisation matrices (low-delay syntax). quant_matrix() */
  1104. if (get_bits1(gb)) {
  1105. av_log(s->avctx,AV_LOG_DEBUG,"Low Delay: Has Custom Quantization Matrix!\n");
  1106. /* custom quantization matrix */
  1107. for (level = 0; level < s->wavelet_depth; level++) {
  1108. for (i = !!level; i < 4; i++) {
  1109. s->lowdelay.quant[level][i] = get_interleaved_ue_golomb(gb);
  1110. }
  1111. }
  1112. } else {
  1113. if (s->wavelet_depth > 4) {
  1114. av_log(s->avctx,AV_LOG_ERROR,"Mandatory custom low delay matrix missing for depth %d\n", s->wavelet_depth);
  1115. return AVERROR_INVALIDDATA;
  1116. }
  1117. /* default quantization matrix */
  1118. for (level = 0; level < s->wavelet_depth; level++)
  1119. for (i = 0; i < 4; i++) {
  1120. s->lowdelay.quant[level][i] = ff_dirac_default_qmat[s->wavelet_idx][level][i];
  1121. /* haar with no shift differs for different depths */
  1122. if (s->wavelet_idx == 3)
  1123. s->lowdelay.quant[level][i] += 4*(s->wavelet_depth-1 - level);
  1124. }
  1125. }
  1126. }
  1127. return 0;
  1128. }
  1129. static inline int pred_sbsplit(uint8_t *sbsplit, int stride, int x, int y)
  1130. {
  1131. static const uint8_t avgsplit[7] = { 0, 0, 1, 1, 1, 2, 2 };
  1132. if (!(x|y))
  1133. return 0;
  1134. else if (!y)
  1135. return sbsplit[-1];
  1136. else if (!x)
  1137. return sbsplit[-stride];
  1138. return avgsplit[sbsplit[-1] + sbsplit[-stride] + sbsplit[-stride-1]];
  1139. }
  1140. static inline int pred_block_mode(DiracBlock *block, int stride, int x, int y, int refmask)
  1141. {
  1142. int pred;
  1143. if (!(x|y))
  1144. return 0;
  1145. else if (!y)
  1146. return block[-1].ref & refmask;
  1147. else if (!x)
  1148. return block[-stride].ref & refmask;
  1149. /* return the majority */
  1150. pred = (block[-1].ref & refmask) + (block[-stride].ref & refmask) + (block[-stride-1].ref & refmask);
  1151. return (pred >> 1) & refmask;
  1152. }
  1153. static inline void pred_block_dc(DiracBlock *block, int stride, int x, int y)
  1154. {
  1155. int i, n = 0;
  1156. memset(block->u.dc, 0, sizeof(block->u.dc));
  1157. if (x && !(block[-1].ref & 3)) {
  1158. for (i = 0; i < 3; i++)
  1159. block->u.dc[i] += block[-1].u.dc[i];
  1160. n++;
  1161. }
  1162. if (y && !(block[-stride].ref & 3)) {
  1163. for (i = 0; i < 3; i++)
  1164. block->u.dc[i] += block[-stride].u.dc[i];
  1165. n++;
  1166. }
  1167. if (x && y && !(block[-1-stride].ref & 3)) {
  1168. for (i = 0; i < 3; i++)
  1169. block->u.dc[i] += block[-1-stride].u.dc[i];
  1170. n++;
  1171. }
  1172. if (n == 2) {
  1173. for (i = 0; i < 3; i++)
  1174. block->u.dc[i] = (block->u.dc[i]+1)>>1;
  1175. } else if (n == 3) {
  1176. for (i = 0; i < 3; i++)
  1177. block->u.dc[i] = divide3(block->u.dc[i]);
  1178. }
  1179. }
  1180. static inline void pred_mv(DiracBlock *block, int stride, int x, int y, int ref)
  1181. {
  1182. int16_t *pred[3];
  1183. int refmask = ref+1;
  1184. int mask = refmask | DIRAC_REF_MASK_GLOBAL; /* exclude gmc blocks */
  1185. int n = 0;
  1186. if (x && (block[-1].ref & mask) == refmask)
  1187. pred[n++] = block[-1].u.mv[ref];
  1188. if (y && (block[-stride].ref & mask) == refmask)
  1189. pred[n++] = block[-stride].u.mv[ref];
  1190. if (x && y && (block[-stride-1].ref & mask) == refmask)
  1191. pred[n++] = block[-stride-1].u.mv[ref];
  1192. switch (n) {
  1193. case 0:
  1194. block->u.mv[ref][0] = 0;
  1195. block->u.mv[ref][1] = 0;
  1196. break;
  1197. case 1:
  1198. block->u.mv[ref][0] = pred[0][0];
  1199. block->u.mv[ref][1] = pred[0][1];
  1200. break;
  1201. case 2:
  1202. block->u.mv[ref][0] = (pred[0][0] + pred[1][0] + 1) >> 1;
  1203. block->u.mv[ref][1] = (pred[0][1] + pred[1][1] + 1) >> 1;
  1204. break;
  1205. case 3:
  1206. block->u.mv[ref][0] = mid_pred(pred[0][0], pred[1][0], pred[2][0]);
  1207. block->u.mv[ref][1] = mid_pred(pred[0][1], pred[1][1], pred[2][1]);
  1208. break;
  1209. }
  1210. }
  1211. static void global_mv(DiracContext *s, DiracBlock *block, int x, int y, int ref)
  1212. {
  1213. int ez = s->globalmc[ref].zrs_exp;
  1214. int ep = s->globalmc[ref].perspective_exp;
  1215. int (*A)[2] = s->globalmc[ref].zrs;
  1216. int *b = s->globalmc[ref].pan_tilt;
  1217. int *c = s->globalmc[ref].perspective;
  1218. int64_t m = (1<<ep) - (c[0]*(int64_t)x + c[1]*(int64_t)y);
  1219. int64_t mx = m * (int64_t)((A[0][0] * (int64_t)x + A[0][1]*(int64_t)y) + (1<<ez) * b[0]);
  1220. int64_t my = m * (int64_t)((A[1][0] * (int64_t)x + A[1][1]*(int64_t)y) + (1<<ez) * b[1]);
  1221. block->u.mv[ref][0] = (mx + (1<<(ez+ep))) >> (ez+ep);
  1222. block->u.mv[ref][1] = (my + (1<<(ez+ep))) >> (ez+ep);
  1223. }
  1224. static void decode_block_params(DiracContext *s, DiracArith arith[8], DiracBlock *block,
  1225. int stride, int x, int y)
  1226. {
  1227. int i;
  1228. block->ref = pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_REF1);
  1229. block->ref ^= dirac_get_arith_bit(arith, CTX_PMODE_REF1);
  1230. if (s->num_refs == 2) {
  1231. block->ref |= pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_REF2);
  1232. block->ref ^= dirac_get_arith_bit(arith, CTX_PMODE_REF2) << 1;
  1233. }
  1234. if (!block->ref) {
  1235. pred_block_dc(block, stride, x, y);
  1236. for (i = 0; i < 3; i++)
  1237. block->u.dc[i] += (unsigned)dirac_get_arith_int(arith+1+i, CTX_DC_F1, CTX_DC_DATA);
  1238. return;
  1239. }
  1240. if (s->globalmc_flag) {
  1241. block->ref |= pred_block_mode(block, stride, x, y, DIRAC_REF_MASK_GLOBAL);
  1242. block->ref ^= dirac_get_arith_bit(arith, CTX_GLOBAL_BLOCK) << 2;
  1243. }
  1244. for (i = 0; i < s->num_refs; i++)
  1245. if (block->ref & (i+1)) {
  1246. if (block->ref & DIRAC_REF_MASK_GLOBAL) {
  1247. global_mv(s, block, x, y, i);
  1248. } else {
  1249. pred_mv(block, stride, x, y, i);
  1250. block->u.mv[i][0] += (unsigned)dirac_get_arith_int(arith + 4 + 2 * i, CTX_MV_F1, CTX_MV_DATA);
  1251. block->u.mv[i][1] += (unsigned)dirac_get_arith_int(arith + 5 + 2 * i, CTX_MV_F1, CTX_MV_DATA);
  1252. }
  1253. }
  1254. }
  1255. /**
  1256. * Copies the current block to the other blocks covered by the current superblock split mode
  1257. */
  1258. static void propagate_block_data(DiracBlock *block, int stride, int size)
  1259. {
  1260. int x, y;
  1261. DiracBlock *dst = block;
  1262. for (x = 1; x < size; x++)
  1263. dst[x] = *block;
  1264. for (y = 1; y < size; y++) {
  1265. dst += stride;
  1266. for (x = 0; x < size; x++)
  1267. dst[x] = *block;
  1268. }
  1269. }
  1270. /**
  1271. * Dirac Specification ->
  1272. * 12. Block motion data syntax
  1273. */
  1274. static int dirac_unpack_block_motion_data(DiracContext *s)
  1275. {
  1276. GetBitContext *gb = &s->gb;
  1277. uint8_t *sbsplit = s->sbsplit;
  1278. int i, x, y, q, p;
  1279. DiracArith arith[8];
  1280. align_get_bits(gb);
  1281. /* [DIRAC_STD] 11.2.4 and 12.2.1 Number of blocks and superblocks */
  1282. s->sbwidth = DIVRNDUP(s->seq.width, 4*s->plane[0].xbsep);
  1283. s->sbheight = DIVRNDUP(s->seq.height, 4*s->plane[0].ybsep);
  1284. s->blwidth = 4 * s->sbwidth;
  1285. s->blheight = 4 * s->sbheight;
  1286. /* [DIRAC_STD] 12.3.1 Superblock splitting modes. superblock_split_modes()
  1287. decode superblock split modes */
  1288. ff_dirac_init_arith_decoder(arith, gb, get_interleaved_ue_golomb(gb)); /* get_interleaved_ue_golomb(gb) is the length */
  1289. for (y = 0; y < s->sbheight; y++) {
  1290. for (x = 0; x < s->sbwidth; x++) {
  1291. unsigned int split = dirac_get_arith_uint(arith, CTX_SB_F1, CTX_SB_DATA);
  1292. if (split > 2)
  1293. return AVERROR_INVALIDDATA;
  1294. sbsplit[x] = (split + pred_sbsplit(sbsplit+x, s->sbwidth, x, y)) % 3;
  1295. }
  1296. sbsplit += s->sbwidth;
  1297. }
  1298. /* setup arith decoding */
  1299. ff_dirac_init_arith_decoder(arith, gb, get_interleaved_ue_golomb(gb));
  1300. for (i = 0; i < s->num_refs; i++) {
  1301. ff_dirac_init_arith_decoder(arith + 4 + 2 * i, gb, get_interleaved_ue_golomb(gb));
  1302. ff_dirac_init_arith_decoder(arith + 5 + 2 * i, gb, get_interleaved_ue_golomb(gb));
  1303. }
  1304. for (i = 0; i < 3; i++)
  1305. ff_dirac_init_arith_decoder(arith+1+i, gb, get_interleaved_ue_golomb(gb));
  1306. for (y = 0; y < s->sbheight; y++)
  1307. for (x = 0; x < s->sbwidth; x++) {
  1308. int blkcnt = 1 << s->sbsplit[y * s->sbwidth + x];
  1309. int step = 4 >> s->sbsplit[y * s->sbwidth + x];
  1310. for (q = 0; q < blkcnt; q++)
  1311. for (p = 0; p < blkcnt; p++) {
  1312. int bx = 4 * x + p*step;
  1313. int by = 4 * y + q*step;
  1314. DiracBlock *block = &s->blmotion[by*s->blwidth + bx];
  1315. decode_block_params(s, arith, block, s->blwidth, bx, by);
  1316. propagate_block_data(block, s->blwidth, step);
  1317. }
  1318. }
  1319. return 0;
  1320. }
  1321. static int weight(int i, int blen, int offset)
  1322. {
  1323. #define ROLLOFF(i) offset == 1 ? ((i) ? 5 : 3) : \
  1324. (1 + (6*(i) + offset - 1) / (2*offset - 1))
  1325. if (i < 2*offset)
  1326. return ROLLOFF(i);
  1327. else if (i > blen-1 - 2*offset)
  1328. return ROLLOFF(blen-1 - i);
  1329. return 8;
  1330. }
  1331. static void init_obmc_weight_row(Plane *p, uint8_t *obmc_weight, int stride,
  1332. int left, int right, int wy)
  1333. {
  1334. int x;
  1335. for (x = 0; left && x < p->xblen >> 1; x++)
  1336. obmc_weight[x] = wy*8;
  1337. for (; x < p->xblen >> right; x++)
  1338. obmc_weight[x] = wy*weight(x, p->xblen, p->xoffset);
  1339. for (; x < p->xblen; x++)
  1340. obmc_weight[x] = wy*8;
  1341. for (; x < stride; x++)
  1342. obmc_weight[x] = 0;
  1343. }
  1344. static void init_obmc_weight(Plane *p, uint8_t *obmc_weight, int stride,
  1345. int left, int right, int top, int bottom)
  1346. {
  1347. int y;
  1348. for (y = 0; top && y < p->yblen >> 1; y++) {
  1349. init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
  1350. obmc_weight += stride;
  1351. }
  1352. for (; y < p->yblen >> bottom; y++) {
  1353. int wy = weight(y, p->yblen, p->yoffset);
  1354. init_obmc_weight_row(p, obmc_weight, stride, left, right, wy);
  1355. obmc_weight += stride;
  1356. }
  1357. for (; y < p->yblen; y++) {
  1358. init_obmc_weight_row(p, obmc_weight, stride, left, right, 8);
  1359. obmc_weight += stride;
  1360. }
  1361. }
  1362. static void init_obmc_weights(DiracContext *s, Plane *p, int by)
  1363. {
  1364. int top = !by;
  1365. int bottom = by == s->blheight-1;
  1366. /* don't bother re-initing for rows 2 to blheight-2, the weights don't change */
  1367. if (top || bottom || by == 1) {
  1368. init_obmc_weight(p, s->obmc_weight[0], MAX_BLOCKSIZE, 1, 0, top, bottom);
  1369. init_obmc_weight(p, s->obmc_weight[1], MAX_BLOCKSIZE, 0, 0, top, bottom);
  1370. init_obmc_weight(p, s->obmc_weight[2], MAX_BLOCKSIZE, 0, 1, top, bottom);
  1371. }
  1372. }
  1373. static const uint8_t epel_weights[4][4][4] = {
  1374. {{ 16, 0, 0, 0 },
  1375. { 12, 4, 0, 0 },
  1376. { 8, 8, 0, 0 },
  1377. { 4, 12, 0, 0 }},
  1378. {{ 12, 0, 4, 0 },
  1379. { 9, 3, 3, 1 },
  1380. { 6, 6, 2, 2 },
  1381. { 3, 9, 1, 3 }},
  1382. {{ 8, 0, 8, 0 },
  1383. { 6, 2, 6, 2 },
  1384. { 4, 4, 4, 4 },
  1385. { 2, 6, 2, 6 }},
  1386. {{ 4, 0, 12, 0 },
  1387. { 3, 1, 9, 3 },
  1388. { 2, 2, 6, 6 },
  1389. { 1, 3, 3, 9 }}
  1390. };
  1391. /**
  1392. * For block x,y, determine which of the hpel planes to do bilinear
  1393. * interpolation from and set src[] to the location in each hpel plane
  1394. * to MC from.
  1395. *
  1396. * @return the index of the put_dirac_pixels_tab function to use
  1397. * 0 for 1 plane (fpel,hpel), 1 for 2 planes (qpel), 2 for 4 planes (qpel), and 3 for epel
  1398. */
  1399. static int mc_subpel(DiracContext *s, DiracBlock *block, const uint8_t *src[5],
  1400. int x, int y, int ref, int plane)
  1401. {
  1402. Plane *p = &s->plane[plane];
  1403. uint8_t **ref_hpel = s->ref_pics[ref]->hpel[plane];
  1404. int motion_x = block->u.mv[ref][0];
  1405. int motion_y = block->u.mv[ref][1];
  1406. int mx, my, i, epel, nplanes = 0;
  1407. if (plane) {
  1408. motion_x >>= s->chroma_x_shift;
  1409. motion_y >>= s->chroma_y_shift;
  1410. }
  1411. mx = motion_x & ~(-1U << s->mv_precision);
  1412. my = motion_y & ~(-1U << s->mv_precision);
  1413. motion_x >>= s->mv_precision;
  1414. motion_y >>= s->mv_precision;
  1415. /* normalize subpel coordinates to epel */
  1416. /* TODO: template this function? */
  1417. mx <<= 3 - s->mv_precision;
  1418. my <<= 3 - s->mv_precision;
  1419. x += motion_x;
  1420. y += motion_y;
  1421. epel = (mx|my)&1;
  1422. /* hpel position */
  1423. if (!((mx|my)&3)) {
  1424. nplanes = 1;
  1425. src[0] = ref_hpel[(my>>1)+(mx>>2)] + y*p->stride + x;
  1426. } else {
  1427. /* qpel or epel */
  1428. nplanes = 4;
  1429. for (i = 0; i < 4; i++)
  1430. src[i] = ref_hpel[i] + y*p->stride + x;
  1431. /* if we're interpolating in the right/bottom halves, adjust the planes as needed
  1432. we increment x/y because the edge changes for half of the pixels */
  1433. if (mx > 4) {
  1434. src[0] += 1;
  1435. src[2] += 1;
  1436. x++;
  1437. }
  1438. if (my > 4) {
  1439. src[0] += p->stride;
  1440. src[1] += p->stride;
  1441. y++;
  1442. }
  1443. /* hpel planes are:
  1444. [0]: F [1]: H
  1445. [2]: V [3]: C */
  1446. if (!epel) {
  1447. /* check if we really only need 2 planes since either mx or my is
  1448. a hpel position. (epel weights of 0 handle this there) */
  1449. if (!(mx&3)) {
  1450. /* mx == 0: average [0] and [2]
  1451. mx == 4: average [1] and [3] */
  1452. src[!mx] = src[2 + !!mx];
  1453. nplanes = 2;
  1454. } else if (!(my&3)) {
  1455. src[0] = src[(my>>1) ];
  1456. src[1] = src[(my>>1)+1];
  1457. nplanes = 2;
  1458. }
  1459. } else {
  1460. /* adjust the ordering if needed so the weights work */
  1461. if (mx > 4) {
  1462. FFSWAP(const uint8_t *, src[0], src[1]);
  1463. FFSWAP(const uint8_t *, src[2], src[3]);
  1464. }
  1465. if (my > 4) {
  1466. FFSWAP(const uint8_t *, src[0], src[2]);
  1467. FFSWAP(const uint8_t *, src[1], src[3]);
  1468. }
  1469. src[4] = epel_weights[my&3][mx&3];
  1470. }
  1471. }
  1472. /* fixme: v/h _edge_pos */
  1473. if (x + p->xblen > p->width +EDGE_WIDTH/2 ||
  1474. y + p->yblen > p->height+EDGE_WIDTH/2 ||
  1475. x < 0 || y < 0) {
  1476. for (i = 0; i < nplanes; i++) {
  1477. s->vdsp.emulated_edge_mc(s->edge_emu_buffer[i], src[i],
  1478. p->stride, p->stride,
  1479. p->xblen, p->yblen, x, y,
  1480. p->width+EDGE_WIDTH/2, p->height+EDGE_WIDTH/2);
  1481. src[i] = s->edge_emu_buffer[i];
  1482. }
  1483. }
  1484. return (nplanes>>1) + epel;
  1485. }
  1486. static void add_dc(uint16_t *dst, int dc, int stride,
  1487. uint8_t *obmc_weight, int xblen, int yblen)
  1488. {
  1489. int x, y;
  1490. dc += 128;
  1491. for (y = 0; y < yblen; y++) {
  1492. for (x = 0; x < xblen; x += 2) {
  1493. dst[x ] += dc * obmc_weight[x ];
  1494. dst[x+1] += dc * obmc_weight[x+1];
  1495. }
  1496. dst += stride;
  1497. obmc_weight += MAX_BLOCKSIZE;
  1498. }
  1499. }
  1500. static void block_mc(DiracContext *s, DiracBlock *block,
  1501. uint16_t *mctmp, uint8_t *obmc_weight,
  1502. int plane, int dstx, int dsty)
  1503. {
  1504. Plane *p = &s->plane[plane];
  1505. const uint8_t *src[5];
  1506. int idx;
  1507. switch (block->ref&3) {
  1508. case 0: /* DC */
  1509. add_dc(mctmp, block->u.dc[plane], p->stride, obmc_weight, p->xblen, p->yblen);
  1510. return;
  1511. case 1:
  1512. case 2:
  1513. idx = mc_subpel(s, block, src, dstx, dsty, (block->ref&3)-1, plane);
  1514. s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
  1515. if (s->weight_func)
  1516. s->weight_func(s->mcscratch, p->stride, s->weight_log2denom,
  1517. s->weight[0] + s->weight[1], p->yblen);
  1518. break;
  1519. case 3:
  1520. idx = mc_subpel(s, block, src, dstx, dsty, 0, plane);
  1521. s->put_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
  1522. idx = mc_subpel(s, block, src, dstx, dsty, 1, plane);
  1523. if (s->biweight_func) {
  1524. /* fixme: +32 is a quick hack */
  1525. s->put_pixels_tab[idx](s->mcscratch + 32, src, p->stride, p->yblen);
  1526. s->biweight_func(s->mcscratch, s->mcscratch+32, p->stride, s->weight_log2denom,
  1527. s->weight[0], s->weight[1], p->yblen);
  1528. } else
  1529. s->avg_pixels_tab[idx](s->mcscratch, src, p->stride, p->yblen);
  1530. break;
  1531. }
  1532. s->add_obmc(mctmp, s->mcscratch, p->stride, obmc_weight, p->yblen);
  1533. }
  1534. static void mc_row(DiracContext *s, DiracBlock *block, uint16_t *mctmp, int plane, int dsty)
  1535. {
  1536. Plane *p = &s->plane[plane];
  1537. int x, dstx = p->xbsep - p->xoffset;
  1538. block_mc(s, block, mctmp, s->obmc_weight[0], plane, -p->xoffset, dsty);
  1539. mctmp += p->xbsep;
  1540. for (x = 1; x < s->blwidth-1; x++) {
  1541. block_mc(s, block+x, mctmp, s->obmc_weight[1], plane, dstx, dsty);
  1542. dstx += p->xbsep;
  1543. mctmp += p->xbsep;
  1544. }
  1545. block_mc(s, block+x, mctmp, s->obmc_weight[2], plane, dstx, dsty);
  1546. }
  1547. static void select_dsp_funcs(DiracContext *s, int width, int height, int xblen, int yblen)
  1548. {
  1549. int idx = 0;
  1550. if (xblen > 8)
  1551. idx = 1;
  1552. if (xblen > 16)
  1553. idx = 2;
  1554. memcpy(s->put_pixels_tab, s->diracdsp.put_dirac_pixels_tab[idx], sizeof(s->put_pixels_tab));
  1555. memcpy(s->avg_pixels_tab, s->diracdsp.avg_dirac_pixels_tab[idx], sizeof(s->avg_pixels_tab));
  1556. s->add_obmc = s->diracdsp.add_dirac_obmc[idx];
  1557. if (s->weight_log2denom > 1 || s->weight[0] != 1 || s->weight[1] != 1) {
  1558. s->weight_func = s->diracdsp.weight_dirac_pixels_tab[idx];
  1559. s->biweight_func = s->diracdsp.biweight_dirac_pixels_tab[idx];
  1560. } else {
  1561. s->weight_func = NULL;
  1562. s->biweight_func = NULL;
  1563. }
  1564. }
  1565. static int interpolate_refplane(DiracContext *s, DiracFrame *ref, int plane, int width, int height)
  1566. {
  1567. /* chroma allocates an edge of 8 when subsampled
  1568. which for 4:2:2 means an h edge of 16 and v edge of 8
  1569. just use 8 for everything for the moment */
  1570. int i, edge = EDGE_WIDTH/2;
  1571. ref->hpel[plane][0] = ref->avframe->data[plane];
  1572. 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 */
  1573. /* no need for hpel if we only have fpel vectors */
  1574. if (!s->mv_precision)
  1575. return 0;
  1576. for (i = 1; i < 4; i++) {
  1577. if (!ref->hpel_base[plane][i])
  1578. ref->hpel_base[plane][i] = av_malloc((height+2*edge) * ref->avframe->linesize[plane] + 32);
  1579. if (!ref->hpel_base[plane][i]) {
  1580. return AVERROR(ENOMEM);
  1581. }
  1582. /* we need to be 16-byte aligned even for chroma */
  1583. ref->hpel[plane][i] = ref->hpel_base[plane][i] + edge*ref->avframe->linesize[plane] + 16;
  1584. }
  1585. if (!ref->interpolated[plane]) {
  1586. s->diracdsp.dirac_hpel_filter(ref->hpel[plane][1], ref->hpel[plane][2],
  1587. ref->hpel[plane][3], ref->hpel[plane][0],
  1588. ref->avframe->linesize[plane], width, height);
  1589. s->mpvencdsp.draw_edges(ref->hpel[plane][1], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
  1590. s->mpvencdsp.draw_edges(ref->hpel[plane][2], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
  1591. s->mpvencdsp.draw_edges(ref->hpel[plane][3], ref->avframe->linesize[plane], width, height, edge, edge, EDGE_TOP | EDGE_BOTTOM);
  1592. }
  1593. ref->interpolated[plane] = 1;
  1594. return 0;
  1595. }
  1596. /**
  1597. * Dirac Specification ->
  1598. * 13.0 Transform data syntax. transform_data()
  1599. */
  1600. static int dirac_decode_frame_internal(DiracContext *s)
  1601. {
  1602. DWTContext d;
  1603. int y, i, comp, dsty;
  1604. int ret;
  1605. if (s->low_delay) {
  1606. /* [DIRAC_STD] 13.5.1 low_delay_transform_data() */
  1607. if (!s->hq_picture) {
  1608. for (comp = 0; comp < 3; comp++) {
  1609. Plane *p = &s->plane[comp];
  1610. memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
  1611. }
  1612. }
  1613. if (!s->zero_res) {
  1614. if ((ret = decode_lowdelay(s)) < 0)
  1615. return ret;
  1616. }
  1617. }
  1618. for (comp = 0; comp < 3; comp++) {
  1619. Plane *p = &s->plane[comp];
  1620. uint8_t *frame = s->current_picture->avframe->data[comp];
  1621. /* FIXME: small resolutions */
  1622. for (i = 0; i < 4; i++)
  1623. s->edge_emu_buffer[i] = s->edge_emu_buffer_base + i*FFALIGN(p->width, 16);
  1624. if (!s->zero_res && !s->low_delay)
  1625. {
  1626. memset(p->idwt.buf, 0, p->idwt.stride * p->idwt.height);
  1627. decode_component(s, comp); /* [DIRAC_STD] 13.4.1 core_transform_data() */
  1628. }
  1629. ret = ff_spatial_idwt_init(&d, &p->idwt, s->wavelet_idx+2,
  1630. s->wavelet_depth, s->bit_depth);
  1631. if (ret < 0)
  1632. return ret;
  1633. if (!s->num_refs) { /* intra */
  1634. for (y = 0; y < p->height; y += 16) {
  1635. int idx = (s->bit_depth - 8) >> 1;
  1636. ff_spatial_idwt_slice2(&d, y+16); /* decode */
  1637. s->diracdsp.put_signed_rect_clamped[idx](frame + y*p->stride,
  1638. p->stride,
  1639. p->idwt.buf + y*p->idwt.stride,
  1640. p->idwt.stride, p->width, 16);
  1641. }
  1642. } else { /* inter */
  1643. int rowheight = p->ybsep*p->stride;
  1644. select_dsp_funcs(s, p->width, p->height, p->xblen, p->yblen);
  1645. for (i = 0; i < s->num_refs; i++) {
  1646. int ret = interpolate_refplane(s, s->ref_pics[i], comp, p->width, p->height);
  1647. if (ret < 0)
  1648. return ret;
  1649. }
  1650. memset(s->mctmp, 0, 4*p->yoffset*p->stride);
  1651. dsty = -p->yoffset;
  1652. for (y = 0; y < s->blheight; y++) {
  1653. int h = 0,
  1654. start = FFMAX(dsty, 0);
  1655. uint16_t *mctmp = s->mctmp + y*rowheight;
  1656. DiracBlock *blocks = s->blmotion + y*s->blwidth;
  1657. init_obmc_weights(s, p, y);
  1658. if (y == s->blheight-1 || start+p->ybsep > p->height)
  1659. h = p->height - start;
  1660. else
  1661. h = p->ybsep - (start - dsty);
  1662. if (h < 0)
  1663. break;
  1664. memset(mctmp+2*p->yoffset*p->stride, 0, 2*rowheight);
  1665. mc_row(s, blocks, mctmp, comp, dsty);
  1666. mctmp += (start - dsty)*p->stride + p->xoffset;
  1667. ff_spatial_idwt_slice2(&d, start + h); /* decode */
  1668. /* NOTE: add_rect_clamped hasn't been templated hence the shifts.
  1669. * idwt.stride is passed as pixels, not in bytes as in the rest of the decoder */
  1670. s->diracdsp.add_rect_clamped(frame + start*p->stride, mctmp, p->stride,
  1671. (int16_t*)(p->idwt.buf) + start*(p->idwt.stride >> 1), (p->idwt.stride >> 1), p->width, h);
  1672. dsty += p->ybsep;
  1673. }
  1674. }
  1675. }
  1676. return 0;
  1677. }
  1678. static int get_buffer_with_edge(AVCodecContext *avctx, AVFrame *f, int flags)
  1679. {
  1680. int ret, i;
  1681. int chroma_x_shift, chroma_y_shift;
  1682. ret = av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &chroma_x_shift,
  1683. &chroma_y_shift);
  1684. if (ret < 0)
  1685. return ret;
  1686. f->width = avctx->width + 2 * EDGE_WIDTH;
  1687. f->height = avctx->height + 2 * EDGE_WIDTH + 2;
  1688. ret = ff_get_buffer(avctx, f, flags);
  1689. if (ret < 0)
  1690. return ret;
  1691. for (i = 0; f->data[i]; i++) {
  1692. int offset = (EDGE_WIDTH >> (i && i<3 ? chroma_y_shift : 0)) *
  1693. f->linesize[i] + 32;
  1694. f->data[i] += offset;
  1695. }
  1696. f->width = avctx->width;
  1697. f->height = avctx->height;
  1698. return 0;
  1699. }
  1700. /**
  1701. * Dirac Specification ->
  1702. * 11.1.1 Picture Header. picture_header()
  1703. */
  1704. static int dirac_decode_picture_header(DiracContext *s)
  1705. {
  1706. unsigned retire, picnum;
  1707. int i, j, ret;
  1708. int64_t refdist, refnum;
  1709. GetBitContext *gb = &s->gb;
  1710. /* [DIRAC_STD] 11.1.1 Picture Header. picture_header() PICTURE_NUM */
  1711. picnum = s->current_picture->avframe->display_picture_number = get_bits_long(gb, 32);
  1712. av_log(s->avctx,AV_LOG_DEBUG,"PICTURE_NUM: %d\n",picnum);
  1713. /* if this is the first keyframe after a sequence header, start our
  1714. reordering from here */
  1715. if (s->frame_number < 0)
  1716. s->frame_number = picnum;
  1717. s->ref_pics[0] = s->ref_pics[1] = NULL;
  1718. for (i = 0; i < s->num_refs; i++) {
  1719. refnum = (picnum + dirac_get_se_golomb(gb)) & 0xFFFFFFFF;
  1720. refdist = INT64_MAX;
  1721. /* find the closest reference to the one we want */
  1722. /* Jordi: this is needed if the referenced picture hasn't yet arrived */
  1723. for (j = 0; j < MAX_REFERENCE_FRAMES && refdist; j++)
  1724. if (s->ref_frames[j]
  1725. && FFABS(s->ref_frames[j]->avframe->display_picture_number - refnum) < refdist) {
  1726. s->ref_pics[i] = s->ref_frames[j];
  1727. refdist = FFABS(s->ref_frames[j]->avframe->display_picture_number - refnum);
  1728. }
  1729. if (!s->ref_pics[i] || refdist)
  1730. av_log(s->avctx, AV_LOG_DEBUG, "Reference not found\n");
  1731. /* if there were no references at all, allocate one */
  1732. if (!s->ref_pics[i])
  1733. for (j = 0; j < MAX_FRAMES; j++)
  1734. if (!s->all_frames[j].avframe->data[0]) {
  1735. s->ref_pics[i] = &s->all_frames[j];
  1736. ret = get_buffer_with_edge(s->avctx, s->ref_pics[i]->avframe, AV_GET_BUFFER_FLAG_REF);
  1737. if (ret < 0)
  1738. return ret;
  1739. break;
  1740. }
  1741. if (!s->ref_pics[i]) {
  1742. av_log(s->avctx, AV_LOG_ERROR, "Reference could not be allocated\n");
  1743. return AVERROR_INVALIDDATA;
  1744. }
  1745. }
  1746. /* retire the reference frames that are not used anymore */
  1747. if (s->current_picture->reference) {
  1748. retire = (picnum + dirac_get_se_golomb(gb)) & 0xFFFFFFFF;
  1749. if (retire != picnum) {
  1750. DiracFrame *retire_pic = remove_frame(s->ref_frames, retire);
  1751. if (retire_pic)
  1752. retire_pic->reference &= DELAYED_PIC_REF;
  1753. else
  1754. av_log(s->avctx, AV_LOG_DEBUG, "Frame to retire not found\n");
  1755. }
  1756. /* if reference array is full, remove the oldest as per the spec */
  1757. while (add_frame(s->ref_frames, MAX_REFERENCE_FRAMES, s->current_picture)) {
  1758. av_log(s->avctx, AV_LOG_ERROR, "Reference frame overflow\n");
  1759. remove_frame(s->ref_frames, s->ref_frames[0]->avframe->display_picture_number)->reference &= DELAYED_PIC_REF;
  1760. }
  1761. }
  1762. if (s->num_refs) {
  1763. ret = dirac_unpack_prediction_parameters(s); /* [DIRAC_STD] 11.2 Picture Prediction Data. picture_prediction() */
  1764. if (ret < 0)
  1765. return ret;
  1766. ret = dirac_unpack_block_motion_data(s); /* [DIRAC_STD] 12. Block motion data syntax */
  1767. if (ret < 0)
  1768. return ret;
  1769. }
  1770. ret = dirac_unpack_idwt_params(s); /* [DIRAC_STD] 11.3 Wavelet transform data */
  1771. if (ret < 0)
  1772. return ret;
  1773. init_planes(s);
  1774. return 0;
  1775. }
  1776. static int get_delayed_pic(DiracContext *s, AVFrame *picture, int *got_frame)
  1777. {
  1778. DiracFrame *out = s->delay_frames[0];
  1779. int i, out_idx = 0;
  1780. int ret;
  1781. /* find frame with lowest picture number */
  1782. for (i = 1; s->delay_frames[i]; i++)
  1783. if (s->delay_frames[i]->avframe->display_picture_number < out->avframe->display_picture_number) {
  1784. out = s->delay_frames[i];
  1785. out_idx = i;
  1786. }
  1787. for (i = out_idx; s->delay_frames[i]; i++)
  1788. s->delay_frames[i] = s->delay_frames[i+1];
  1789. if (out) {
  1790. out->reference ^= DELAYED_PIC_REF;
  1791. if((ret = av_frame_ref(picture, out->avframe)) < 0)
  1792. return ret;
  1793. *got_frame = 1;
  1794. }
  1795. return 0;
  1796. }
  1797. /**
  1798. * Dirac Specification ->
  1799. * 9.6 Parse Info Header Syntax. parse_info()
  1800. * 4 byte start code + byte parse code + 4 byte size + 4 byte previous size
  1801. */
  1802. #define DATA_UNIT_HEADER_SIZE 13
  1803. /* [DIRAC_STD] dirac_decode_data_unit makes reference to the while defined in 9.3
  1804. inside the function parse_sequence() */
  1805. static int dirac_decode_data_unit(AVCodecContext *avctx, const uint8_t *buf, int size)
  1806. {
  1807. DiracContext *s = avctx->priv_data;
  1808. DiracFrame *pic = NULL;
  1809. AVDiracSeqHeader *dsh;
  1810. int ret, i;
  1811. uint8_t parse_code;
  1812. unsigned tmp;
  1813. if (size < DATA_UNIT_HEADER_SIZE)
  1814. return AVERROR_INVALIDDATA;
  1815. parse_code = buf[4];
  1816. init_get_bits(&s->gb, &buf[13], 8*(size - DATA_UNIT_HEADER_SIZE));
  1817. if (parse_code == DIRAC_PCODE_SEQ_HEADER) {
  1818. if (s->seen_sequence_header)
  1819. return 0;
  1820. /* [DIRAC_STD] 10. Sequence header */
  1821. ret = av_dirac_parse_sequence_header(&dsh, buf + DATA_UNIT_HEADER_SIZE, size - DATA_UNIT_HEADER_SIZE, avctx);
  1822. if (ret < 0) {
  1823. av_log(avctx, AV_LOG_ERROR, "error parsing sequence header");
  1824. return ret;
  1825. }
  1826. if (CALC_PADDING((int64_t)dsh->width, MAX_DWT_LEVELS) * CALC_PADDING((int64_t)dsh->height, MAX_DWT_LEVELS) > avctx->max_pixels)
  1827. ret = AVERROR(ERANGE);
  1828. if (ret >= 0)
  1829. ret = ff_set_dimensions(avctx, dsh->width, dsh->height);
  1830. if (ret < 0) {
  1831. av_freep(&dsh);
  1832. return ret;
  1833. }
  1834. ff_set_sar(avctx, dsh->sample_aspect_ratio);
  1835. avctx->pix_fmt = dsh->pix_fmt;
  1836. avctx->color_range = dsh->color_range;
  1837. avctx->color_trc = dsh->color_trc;
  1838. avctx->color_primaries = dsh->color_primaries;
  1839. avctx->colorspace = dsh->colorspace;
  1840. avctx->profile = dsh->profile;
  1841. avctx->level = dsh->level;
  1842. avctx->framerate = dsh->framerate;
  1843. s->bit_depth = dsh->bit_depth;
  1844. s->version.major = dsh->version.major;
  1845. s->version.minor = dsh->version.minor;
  1846. s->seq = *dsh;
  1847. av_freep(&dsh);
  1848. s->pshift = s->bit_depth > 8;
  1849. ret = av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt,
  1850. &s->chroma_x_shift,
  1851. &s->chroma_y_shift);
  1852. if (ret < 0)
  1853. return ret;
  1854. ret = alloc_sequence_buffers(s);
  1855. if (ret < 0)
  1856. return ret;
  1857. s->seen_sequence_header = 1;
  1858. } else if (parse_code == DIRAC_PCODE_END_SEQ) { /* [DIRAC_STD] End of Sequence */
  1859. free_sequence_buffers(s);
  1860. s->seen_sequence_header = 0;
  1861. } else if (parse_code == DIRAC_PCODE_AUX) {
  1862. if (buf[13] == 1) { /* encoder implementation/version */
  1863. int ver[3];
  1864. /* versions older than 1.0.8 don't store quant delta for
  1865. subbands with only one codeblock */
  1866. if (sscanf(buf+14, "Schroedinger %d.%d.%d", ver, ver+1, ver+2) == 3)
  1867. if (ver[0] == 1 && ver[1] == 0 && ver[2] <= 7)
  1868. s->old_delta_quant = 1;
  1869. }
  1870. } else if (parse_code & 0x8) { /* picture data unit */
  1871. if (!s->seen_sequence_header) {
  1872. av_log(avctx, AV_LOG_DEBUG, "Dropping frame without sequence header\n");
  1873. return AVERROR_INVALIDDATA;
  1874. }
  1875. /* find an unused frame */
  1876. for (i = 0; i < MAX_FRAMES; i++)
  1877. if (s->all_frames[i].avframe->data[0] == NULL)
  1878. pic = &s->all_frames[i];
  1879. if (!pic) {
  1880. av_log(avctx, AV_LOG_ERROR, "framelist full\n");
  1881. return AVERROR_INVALIDDATA;
  1882. }
  1883. av_frame_unref(pic->avframe);
  1884. /* [DIRAC_STD] Defined in 9.6.1 ... */
  1885. tmp = parse_code & 0x03; /* [DIRAC_STD] num_refs() */
  1886. if (tmp > 2) {
  1887. av_log(avctx, AV_LOG_ERROR, "num_refs of 3\n");
  1888. return AVERROR_INVALIDDATA;
  1889. }
  1890. s->num_refs = tmp;
  1891. s->is_arith = (parse_code & 0x48) == 0x08; /* [DIRAC_STD] using_ac() */
  1892. s->low_delay = (parse_code & 0x88) == 0x88; /* [DIRAC_STD] is_low_delay() */
  1893. s->core_syntax = (parse_code & 0x88) == 0x08; /* [DIRAC_STD] is_core_syntax() */
  1894. s->ld_picture = (parse_code & 0xF8) == 0xC8; /* [DIRAC_STD] is_ld_picture() */
  1895. s->hq_picture = (parse_code & 0xF8) == 0xE8; /* [DIRAC_STD] is_hq_picture() */
  1896. s->dc_prediction = (parse_code & 0x28) == 0x08; /* [DIRAC_STD] using_dc_prediction() */
  1897. pic->reference = (parse_code & 0x0C) == 0x0C; /* [DIRAC_STD] is_reference() */
  1898. pic->avframe->key_frame = s->num_refs == 0; /* [DIRAC_STD] is_intra() */
  1899. pic->avframe->pict_type = s->num_refs + 1; /* Definition of AVPictureType in avutil.h */
  1900. /* VC-2 Low Delay has a different parse code than the Dirac Low Delay */
  1901. if (s->version.minor == 2 && parse_code == 0x88)
  1902. s->ld_picture = 1;
  1903. if (s->low_delay && !(s->ld_picture || s->hq_picture) ) {
  1904. av_log(avctx, AV_LOG_ERROR, "Invalid low delay flag\n");
  1905. return AVERROR_INVALIDDATA;
  1906. }
  1907. if ((ret = get_buffer_with_edge(avctx, pic->avframe, (parse_code & 0x0C) == 0x0C ? AV_GET_BUFFER_FLAG_REF : 0)) < 0)
  1908. return ret;
  1909. s->current_picture = pic;
  1910. s->plane[0].stride = pic->avframe->linesize[0];
  1911. s->plane[1].stride = pic->avframe->linesize[1];
  1912. s->plane[2].stride = pic->avframe->linesize[2];
  1913. if (alloc_buffers(s, FFMAX3(FFABS(s->plane[0].stride), FFABS(s->plane[1].stride), FFABS(s->plane[2].stride))) < 0)
  1914. return AVERROR(ENOMEM);
  1915. /* [DIRAC_STD] 11.1 Picture parse. picture_parse() */
  1916. ret = dirac_decode_picture_header(s);
  1917. if (ret < 0)
  1918. return ret;
  1919. /* [DIRAC_STD] 13.0 Transform data syntax. transform_data() */
  1920. ret = dirac_decode_frame_internal(s);
  1921. if (ret < 0)
  1922. return ret;
  1923. }
  1924. return 0;
  1925. }
  1926. static int dirac_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *pkt)
  1927. {
  1928. DiracContext *s = avctx->priv_data;
  1929. AVFrame *picture = data;
  1930. uint8_t *buf = pkt->data;
  1931. int buf_size = pkt->size;
  1932. int i, buf_idx = 0;
  1933. int ret;
  1934. unsigned data_unit_size;
  1935. /* release unused frames */
  1936. for (i = 0; i < MAX_FRAMES; i++)
  1937. if (s->all_frames[i].avframe->data[0] && !s->all_frames[i].reference) {
  1938. av_frame_unref(s->all_frames[i].avframe);
  1939. memset(s->all_frames[i].interpolated, 0, sizeof(s->all_frames[i].interpolated));
  1940. }
  1941. s->current_picture = NULL;
  1942. *got_frame = 0;
  1943. /* end of stream, so flush delayed pics */
  1944. if (buf_size == 0)
  1945. return get_delayed_pic(s, (AVFrame *)data, got_frame);
  1946. for (;;) {
  1947. /*[DIRAC_STD] Here starts the code from parse_info() defined in 9.6
  1948. [DIRAC_STD] PARSE_INFO_PREFIX = "BBCD" as defined in ISO/IEC 646
  1949. BBCD start code search */
  1950. for (; buf_idx + DATA_UNIT_HEADER_SIZE < buf_size; buf_idx++) {
  1951. if (buf[buf_idx ] == 'B' && buf[buf_idx+1] == 'B' &&
  1952. buf[buf_idx+2] == 'C' && buf[buf_idx+3] == 'D')
  1953. break;
  1954. }
  1955. /* BBCD found or end of data */
  1956. if (buf_idx + DATA_UNIT_HEADER_SIZE >= buf_size)
  1957. break;
  1958. data_unit_size = AV_RB32(buf+buf_idx+5);
  1959. if (data_unit_size > buf_size - buf_idx || !data_unit_size) {
  1960. if(data_unit_size > buf_size - buf_idx)
  1961. av_log(s->avctx, AV_LOG_ERROR,
  1962. "Data unit with size %d is larger than input buffer, discarding\n",
  1963. data_unit_size);
  1964. buf_idx += 4;
  1965. continue;
  1966. }
  1967. /* [DIRAC_STD] dirac_decode_data_unit makes reference to the while defined in 9.3 inside the function parse_sequence() */
  1968. ret = dirac_decode_data_unit(avctx, buf+buf_idx, data_unit_size);
  1969. if (ret < 0)
  1970. {
  1971. av_log(s->avctx, AV_LOG_ERROR,"Error in dirac_decode_data_unit\n");
  1972. return ret;
  1973. }
  1974. buf_idx += data_unit_size;
  1975. }
  1976. if (!s->current_picture)
  1977. return buf_size;
  1978. if (s->current_picture->avframe->display_picture_number > s->frame_number) {
  1979. DiracFrame *delayed_frame = remove_frame(s->delay_frames, s->frame_number);
  1980. s->current_picture->reference |= DELAYED_PIC_REF;
  1981. if (add_frame(s->delay_frames, MAX_DELAY, s->current_picture)) {
  1982. int min_num = s->delay_frames[0]->avframe->display_picture_number;
  1983. /* Too many delayed frames, so we display the frame with the lowest pts */
  1984. av_log(avctx, AV_LOG_ERROR, "Delay frame overflow\n");
  1985. for (i = 1; s->delay_frames[i]; i++)
  1986. if (s->delay_frames[i]->avframe->display_picture_number < min_num)
  1987. min_num = s->delay_frames[i]->avframe->display_picture_number;
  1988. delayed_frame = remove_frame(s->delay_frames, min_num);
  1989. add_frame(s->delay_frames, MAX_DELAY, s->current_picture);
  1990. }
  1991. if (delayed_frame) {
  1992. delayed_frame->reference ^= DELAYED_PIC_REF;
  1993. if((ret=av_frame_ref(data, delayed_frame->avframe)) < 0)
  1994. return ret;
  1995. *got_frame = 1;
  1996. }
  1997. } else if (s->current_picture->avframe->display_picture_number == s->frame_number) {
  1998. /* The right frame at the right time :-) */
  1999. if((ret=av_frame_ref(data, s->current_picture->avframe)) < 0)
  2000. return ret;
  2001. *got_frame = 1;
  2002. }
  2003. if (*got_frame)
  2004. s->frame_number = picture->display_picture_number + 1LL;
  2005. return buf_idx;
  2006. }
  2007. AVCodec ff_dirac_decoder = {
  2008. .name = "dirac",
  2009. .long_name = NULL_IF_CONFIG_SMALL("BBC Dirac VC-2"),
  2010. .type = AVMEDIA_TYPE_VIDEO,
  2011. .id = AV_CODEC_ID_DIRAC,
  2012. .priv_data_size = sizeof(DiracContext),
  2013. .init = dirac_decode_init,
  2014. .close = dirac_decode_end,
  2015. .decode = dirac_decode_frame,
  2016. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_SLICE_THREADS | AV_CODEC_CAP_DR1,
  2017. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
  2018. .flush = dirac_decode_flush,
  2019. };