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.

2264 lines
79KB

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