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.

389 lines
14KB

  1. /*
  2. * DV decoder
  3. * Copyright (c) 2002 Fabrice Bellard
  4. * Copyright (c) 2004 Roman Shaposhnik
  5. *
  6. * 50 Mbps (DVCPRO50) support
  7. * Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
  8. *
  9. * 100 Mbps (DVCPRO HD) support
  10. * Initial code by Daniel Maas <dmaas@maasdigital.com> (funded by BBC R&D)
  11. * Final code by Roman Shaposhnik
  12. *
  13. * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
  14. * of DV technical info.
  15. *
  16. * This file is part of FFmpeg.
  17. *
  18. * FFmpeg is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU Lesser General Public
  20. * License as published by the Free Software Foundation; either
  21. * version 2.1 of the License, or (at your option) any later version.
  22. *
  23. * FFmpeg is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  26. * Lesser General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU Lesser General Public
  29. * License along with FFmpeg; if not, write to the Free Software
  30. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  31. */
  32. /**
  33. * @file
  34. * DV decoder
  35. */
  36. #include "libavutil/avassert.h"
  37. #include "libavutil/pixdesc.h"
  38. #include "avcodec.h"
  39. #include "dsputil.h"
  40. #include "get_bits.h"
  41. #include "put_bits.h"
  42. #include "simple_idct.h"
  43. #include "dvdata.h"
  44. typedef struct BlockInfo {
  45. const uint32_t *factor_table;
  46. const uint8_t *scan_table;
  47. uint8_t pos; /* position in block */
  48. void (*idct_put)(uint8_t *dest, int line_size, DCTELEM *block);
  49. uint8_t partial_bit_count;
  50. uint32_t partial_bit_buffer;
  51. int shift_offset;
  52. } BlockInfo;
  53. static const int dv_iweight_bits = 14;
  54. /* decode AC coefficients */
  55. static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, DCTELEM *block)
  56. {
  57. int last_index = gb->size_in_bits;
  58. const uint8_t *scan_table = mb->scan_table;
  59. const uint32_t *factor_table = mb->factor_table;
  60. int pos = mb->pos;
  61. int partial_bit_count = mb->partial_bit_count;
  62. int level, run, vlc_len, index;
  63. OPEN_READER(re, gb);
  64. UPDATE_CACHE(re, gb);
  65. /* if we must parse a partial VLC, we do it here */
  66. if (partial_bit_count > 0) {
  67. re_cache = re_cache >> partial_bit_count | mb->partial_bit_buffer;
  68. re_index -= partial_bit_count;
  69. mb->partial_bit_count = 0;
  70. }
  71. /* get the AC coefficients until last_index is reached */
  72. for (;;) {
  73. av_dlog(NULL, "%2d: bits=%04x index=%d\n", pos, SHOW_UBITS(re, gb, 16),
  74. re_index);
  75. /* our own optimized GET_RL_VLC */
  76. index = NEG_USR32(re_cache, TEX_VLC_BITS);
  77. vlc_len = ff_dv_rl_vlc[index].len;
  78. if (vlc_len < 0) {
  79. index = NEG_USR32((unsigned)re_cache << TEX_VLC_BITS, -vlc_len) +
  80. ff_dv_rl_vlc[index].level;
  81. vlc_len = TEX_VLC_BITS - vlc_len;
  82. }
  83. level = ff_dv_rl_vlc[index].level;
  84. run = ff_dv_rl_vlc[index].run;
  85. /* gotta check if we're still within gb boundaries */
  86. if (re_index + vlc_len > last_index) {
  87. /* should be < 16 bits otherwise a codeword could have been parsed */
  88. mb->partial_bit_count = last_index - re_index;
  89. mb->partial_bit_buffer = re_cache & ~(-1u >> mb->partial_bit_count);
  90. re_index = last_index;
  91. break;
  92. }
  93. re_index += vlc_len;
  94. av_dlog(NULL, "run=%d level=%d\n", run, level);
  95. pos += run;
  96. if (pos >= 64)
  97. break;
  98. level = (level * factor_table[pos] + (1 << (dv_iweight_bits - 1))) >> dv_iweight_bits;
  99. block[scan_table[pos]] = level;
  100. UPDATE_CACHE(re, gb);
  101. }
  102. CLOSE_READER(re, gb);
  103. mb->pos = pos;
  104. }
  105. static inline void bit_copy(PutBitContext *pb, GetBitContext *gb)
  106. {
  107. int bits_left = get_bits_left(gb);
  108. while (bits_left >= MIN_CACHE_BITS) {
  109. put_bits(pb, MIN_CACHE_BITS, get_bits(gb, MIN_CACHE_BITS));
  110. bits_left -= MIN_CACHE_BITS;
  111. }
  112. if (bits_left > 0) {
  113. put_bits(pb, bits_left, get_bits(gb, bits_left));
  114. }
  115. }
  116. /* mb_x and mb_y are in units of 8 pixels */
  117. static int dv_decode_video_segment(AVCodecContext *avctx, void *arg)
  118. {
  119. DVVideoContext *s = avctx->priv_data;
  120. DVwork_chunk *work_chunk = arg;
  121. int quant, dc, dct_mode, class1, j;
  122. int mb_index, mb_x, mb_y, last_index;
  123. int y_stride, linesize;
  124. DCTELEM *block, *block1;
  125. int c_offset;
  126. uint8_t *y_ptr;
  127. const uint8_t *buf_ptr;
  128. PutBitContext pb, vs_pb;
  129. GetBitContext gb;
  130. BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1;
  131. LOCAL_ALIGNED_16(DCTELEM, sblock, [5*DV_MAX_BPM], [64]);
  132. LOCAL_ALIGNED_16(uint8_t, mb_bit_buffer, [ 80 + FF_INPUT_BUFFER_PADDING_SIZE]); /* allow some slack */
  133. LOCAL_ALIGNED_16(uint8_t, vs_bit_buffer, [5*80 + FF_INPUT_BUFFER_PADDING_SIZE]); /* allow some slack */
  134. const int log2_blocksize = 3-s->avctx->lowres;
  135. int is_field_mode[5];
  136. av_assert1((((int)mb_bit_buffer) & 7) == 0);
  137. av_assert1((((int)vs_bit_buffer) & 7) == 0);
  138. memset(sblock, 0, 5*DV_MAX_BPM*sizeof(*sblock));
  139. /* pass 1: read DC and AC coefficients in blocks */
  140. buf_ptr = &s->buf[work_chunk->buf_offset*80];
  141. block1 = &sblock[0][0];
  142. mb1 = mb_data;
  143. init_put_bits(&vs_pb, vs_bit_buffer, 5 * 80);
  144. for (mb_index = 0; mb_index < 5; mb_index++, mb1 += s->sys->bpm, block1 += s->sys->bpm * 64) {
  145. /* skip header */
  146. quant = buf_ptr[3] & 0x0f;
  147. buf_ptr += 4;
  148. init_put_bits(&pb, mb_bit_buffer, 80);
  149. mb = mb1;
  150. block = block1;
  151. is_field_mode[mb_index] = 0;
  152. for (j = 0; j < s->sys->bpm; j++) {
  153. last_index = s->sys->block_sizes[j];
  154. init_get_bits(&gb, buf_ptr, last_index);
  155. /* get the DC */
  156. dc = get_sbits(&gb, 9);
  157. dct_mode = get_bits1(&gb);
  158. class1 = get_bits(&gb, 2);
  159. if (DV_PROFILE_IS_HD(s->sys)) {
  160. mb->idct_put = s->idct_put[0];
  161. mb->scan_table = s->dv_zigzag[0];
  162. mb->factor_table = &s->sys->idct_factor[(j >= 4)*4*16*64 + class1*16*64 + quant*64];
  163. is_field_mode[mb_index] |= !j && dct_mode;
  164. } else {
  165. mb->idct_put = s->idct_put[dct_mode && log2_blocksize == 3];
  166. mb->scan_table = s->dv_zigzag[dct_mode];
  167. mb->factor_table = &s->sys->idct_factor[(class1 == 3)*2*22*64 + dct_mode*22*64 +
  168. (quant + ff_dv_quant_offset[class1])*64];
  169. }
  170. dc = dc << 2;
  171. /* convert to unsigned because 128 is not added in the
  172. standard IDCT */
  173. dc += 1024;
  174. block[0] = dc;
  175. buf_ptr += last_index >> 3;
  176. mb->pos = 0;
  177. mb->partial_bit_count = 0;
  178. av_dlog(avctx, "MB block: %d, %d ", mb_index, j);
  179. dv_decode_ac(&gb, mb, block);
  180. /* write the remaining bits in a new buffer only if the
  181. block is finished */
  182. if (mb->pos >= 64)
  183. bit_copy(&pb, &gb);
  184. block += 64;
  185. mb++;
  186. }
  187. /* pass 2: we can do it just after */
  188. av_dlog(avctx, "***pass 2 size=%d MB#=%d\n", put_bits_count(&pb), mb_index);
  189. block = block1;
  190. mb = mb1;
  191. init_get_bits(&gb, mb_bit_buffer, put_bits_count(&pb));
  192. put_bits32(&pb, 0); // padding must be zeroed
  193. flush_put_bits(&pb);
  194. for (j = 0; j < s->sys->bpm; j++, block += 64, mb++) {
  195. if (mb->pos < 64 && get_bits_left(&gb) > 0) {
  196. dv_decode_ac(&gb, mb, block);
  197. /* if still not finished, no need to parse other blocks */
  198. if (mb->pos < 64)
  199. break;
  200. }
  201. }
  202. /* all blocks are finished, so the extra bytes can be used at
  203. the video segment level */
  204. if (j >= s->sys->bpm)
  205. bit_copy(&vs_pb, &gb);
  206. }
  207. /* we need a pass over the whole video segment */
  208. av_dlog(avctx, "***pass 3 size=%d\n", put_bits_count(&vs_pb));
  209. block = &sblock[0][0];
  210. mb = mb_data;
  211. init_get_bits(&gb, vs_bit_buffer, put_bits_count(&vs_pb));
  212. put_bits32(&vs_pb, 0); // padding must be zeroed
  213. flush_put_bits(&vs_pb);
  214. for (mb_index = 0; mb_index < 5; mb_index++) {
  215. for (j = 0; j < s->sys->bpm; j++) {
  216. if (mb->pos < 64) {
  217. av_dlog(avctx, "start %d:%d\n", mb_index, j);
  218. dv_decode_ac(&gb, mb, block);
  219. }
  220. if (mb->pos >= 64 && mb->pos < 127)
  221. av_log(avctx, AV_LOG_ERROR, "AC EOB marker is absent pos=%d\n", mb->pos);
  222. block += 64;
  223. mb++;
  224. }
  225. }
  226. /* compute idct and place blocks */
  227. block = &sblock[0][0];
  228. mb = mb_data;
  229. for (mb_index = 0; mb_index < 5; mb_index++) {
  230. dv_calculate_mb_xy(s, work_chunk, mb_index, &mb_x, &mb_y);
  231. /* idct_put'ting luminance */
  232. if ((s->sys->pix_fmt == PIX_FMT_YUV420P) ||
  233. (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) ||
  234. (s->sys->height >= 720 && mb_y != 134)) {
  235. y_stride = (s->picture.linesize[0] << ((!is_field_mode[mb_index]) * log2_blocksize));
  236. } else {
  237. y_stride = (2 << log2_blocksize);
  238. }
  239. y_ptr = s->picture.data[0] + ((mb_y * s->picture.linesize[0] + mb_x) << log2_blocksize);
  240. linesize = s->picture.linesize[0] << is_field_mode[mb_index];
  241. mb[0] .idct_put(y_ptr , linesize, block + 0*64);
  242. if (s->sys->video_stype == 4) { /* SD 422 */
  243. mb[2].idct_put(y_ptr + (1 << log2_blocksize) , linesize, block + 2*64);
  244. } else {
  245. mb[1].idct_put(y_ptr + (1 << log2_blocksize) , linesize, block + 1*64);
  246. mb[2].idct_put(y_ptr + y_stride, linesize, block + 2*64);
  247. mb[3].idct_put(y_ptr + (1 << log2_blocksize) + y_stride, linesize, block + 3*64);
  248. }
  249. mb += 4;
  250. block += 4*64;
  251. /* idct_put'ting chrominance */
  252. c_offset = (((mb_y >> (s->sys->pix_fmt == PIX_FMT_YUV420P)) * s->picture.linesize[1] +
  253. (mb_x >> ((s->sys->pix_fmt == PIX_FMT_YUV411P) ? 2 : 1))) << log2_blocksize);
  254. for (j = 2; j; j--) {
  255. uint8_t *c_ptr = s->picture.data[j] + c_offset;
  256. if (s->sys->pix_fmt == PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
  257. uint64_t aligned_pixels[64/8];
  258. uint8_t *pixels = (uint8_t*)aligned_pixels;
  259. uint8_t *c_ptr1, *ptr1;
  260. int x, y;
  261. mb->idct_put(pixels, 8, block);
  262. for (y = 0; y < (1 << log2_blocksize); y++, c_ptr += s->picture.linesize[j], pixels += 8) {
  263. ptr1 = pixels + (1 << (log2_blocksize - 1));
  264. c_ptr1 = c_ptr + (s->picture.linesize[j] << log2_blocksize);
  265. for (x = 0; x < (1 << (log2_blocksize - 1)); x++) {
  266. c_ptr[x] = pixels[x];
  267. c_ptr1[x] = ptr1[x];
  268. }
  269. }
  270. block += 64; mb++;
  271. } else {
  272. y_stride = (mb_y == 134) ? (1 << log2_blocksize) :
  273. s->picture.linesize[j] << ((!is_field_mode[mb_index]) * log2_blocksize);
  274. linesize = s->picture.linesize[j] << is_field_mode[mb_index];
  275. (mb++)-> idct_put(c_ptr , linesize, block); block += 64;
  276. if (s->sys->bpm == 8) {
  277. (mb++)->idct_put(c_ptr + y_stride, linesize, block); block += 64;
  278. }
  279. }
  280. }
  281. }
  282. return 0;
  283. }
  284. /* NOTE: exactly one frame must be given (120000 bytes for NTSC,
  285. 144000 bytes for PAL - or twice those for 50Mbps) */
  286. static int dvvideo_decode_frame(AVCodecContext *avctx,
  287. void *data, int *data_size,
  288. AVPacket *avpkt)
  289. {
  290. uint8_t *buf = avpkt->data;
  291. int buf_size = avpkt->size;
  292. DVVideoContext *s = avctx->priv_data;
  293. const uint8_t* vsc_pack;
  294. int apt, is16_9;
  295. s->sys = avpriv_dv_frame_profile2(avctx, s->sys, buf, buf_size);
  296. if (!s->sys || buf_size < s->sys->frame_size || ff_dv_init_dynamic_tables(s->sys)) {
  297. av_log(avctx, AV_LOG_ERROR, "could not find dv frame profile\n");
  298. return -1; /* NOTE: we only accept several full frames */
  299. }
  300. if (s->picture.data[0])
  301. avctx->release_buffer(avctx, &s->picture);
  302. avcodec_get_frame_defaults(&s->picture);
  303. s->picture.reference = 0;
  304. s->picture.key_frame = 1;
  305. s->picture.pict_type = AV_PICTURE_TYPE_I;
  306. avctx->pix_fmt = s->sys->pix_fmt;
  307. avctx->time_base = s->sys->time_base;
  308. avcodec_set_dimensions(avctx, s->sys->width, s->sys->height);
  309. if (avctx->get_buffer(avctx, &s->picture) < 0) {
  310. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  311. return -1;
  312. }
  313. s->picture.interlaced_frame = 1;
  314. s->picture.top_field_first = 0;
  315. s->buf = buf;
  316. avctx->execute(avctx, dv_decode_video_segment, s->sys->work_chunks, NULL,
  317. dv_work_pool_size(s->sys), sizeof(DVwork_chunk));
  318. emms_c();
  319. /* return image */
  320. *data_size = sizeof(AVFrame);
  321. *(AVFrame*)data = s->picture;
  322. /* Determine the codec's sample_aspect ratio from the packet */
  323. vsc_pack = buf + 80*5 + 48 + 5;
  324. if ( *vsc_pack == dv_video_control ) {
  325. apt = buf[4] & 0x07;
  326. is16_9 = (vsc_pack[2] & 0x07) == 0x02 || (!apt && (vsc_pack[2] & 0x07) == 0x07);
  327. avctx->sample_aspect_ratio = s->sys->sar[is16_9];
  328. }
  329. return s->sys->frame_size;
  330. }
  331. static int dvvideo_close(AVCodecContext *c)
  332. {
  333. DVVideoContext *s = c->priv_data;
  334. if (s->picture.data[0])
  335. c->release_buffer(c, &s->picture);
  336. return 0;
  337. }
  338. AVCodec ff_dvvideo_decoder = {
  339. .name = "dvvideo",
  340. .type = AVMEDIA_TYPE_VIDEO,
  341. .id = AV_CODEC_ID_DVVIDEO,
  342. .priv_data_size = sizeof(DVVideoContext),
  343. .init = ff_dvvideo_init,
  344. .close = dvvideo_close,
  345. .decode = dvvideo_decode_frame,
  346. .capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
  347. .max_lowres = 3,
  348. .long_name = NULL_IF_CONFIG_SMALL("DV (Digital Video)"),
  349. };