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.

432 lines
15KB

  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/imgutils.h"
  38. #include "libavutil/internal.h"
  39. #include "libavutil/pixdesc.h"
  40. #include "avcodec.h"
  41. #include "dv.h"
  42. #include "dvdata.h"
  43. #include "get_bits.h"
  44. #include "idctdsp.h"
  45. #include "internal.h"
  46. #include "put_bits.h"
  47. #include "simple_idct.h"
  48. typedef struct BlockInfo {
  49. const uint32_t *factor_table;
  50. const uint8_t *scan_table;
  51. uint8_t pos; /* position in block */
  52. void (*idct_put)(uint8_t *dest, int line_size, int16_t *block);
  53. uint8_t partial_bit_count;
  54. uint32_t partial_bit_buffer;
  55. int shift_offset;
  56. } BlockInfo;
  57. static const int dv_iweight_bits = 14;
  58. static av_cold int dvvideo_decode_init(AVCodecContext *avctx)
  59. {
  60. DVVideoContext *s = avctx->priv_data;
  61. IDCTDSPContext idsp;
  62. int i;
  63. memset(&idsp,0, sizeof(idsp));
  64. ff_idctdsp_init(&idsp, avctx);
  65. for (i = 0; i < 64; i++)
  66. s->dv_zigzag[0][i] = idsp.idct_permutation[ff_zigzag_direct[i]];
  67. if (avctx->lowres){
  68. for (i = 0; i < 64; i++){
  69. int j = ff_dv_zigzag248_direct[i];
  70. s->dv_zigzag[1][i] = idsp.idct_permutation[(j & 7) + (j & 8) * 4 + (j & 48) / 2];
  71. }
  72. }else
  73. memcpy(s->dv_zigzag[1], ff_dv_zigzag248_direct, sizeof(s->dv_zigzag[1]));
  74. s->idct_put[0] = idsp.idct_put;
  75. s->idct_put[1] = ff_simple_idct248_put;
  76. return ff_dvvideo_init(avctx);
  77. }
  78. /* decode AC coefficients */
  79. static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, int16_t *block)
  80. {
  81. int last_index = gb->size_in_bits;
  82. const uint8_t *scan_table = mb->scan_table;
  83. const uint32_t *factor_table = mb->factor_table;
  84. int pos = mb->pos;
  85. int partial_bit_count = mb->partial_bit_count;
  86. int level, run, vlc_len, index;
  87. OPEN_READER_NOSIZE(re, gb);
  88. UPDATE_CACHE(re, gb);
  89. /* if we must parse a partial VLC, we do it here */
  90. if (partial_bit_count > 0) {
  91. re_cache = re_cache >> partial_bit_count |
  92. mb->partial_bit_buffer;
  93. re_index -= partial_bit_count;
  94. mb->partial_bit_count = 0;
  95. }
  96. /* get the AC coefficients until last_index is reached */
  97. for (;;) {
  98. av_dlog(NULL, "%2d: bits=%04x index=%d\n", pos, SHOW_UBITS(re, gb, 16),
  99. re_index);
  100. /* our own optimized GET_RL_VLC */
  101. index = NEG_USR32(re_cache, TEX_VLC_BITS);
  102. vlc_len = ff_dv_rl_vlc[index].len;
  103. if (vlc_len < 0) {
  104. index = NEG_USR32((unsigned) re_cache << TEX_VLC_BITS, -vlc_len) +
  105. ff_dv_rl_vlc[index].level;
  106. vlc_len = TEX_VLC_BITS - vlc_len;
  107. }
  108. level = ff_dv_rl_vlc[index].level;
  109. run = ff_dv_rl_vlc[index].run;
  110. /* gotta check if we're still within gb boundaries */
  111. if (re_index + vlc_len > last_index) {
  112. /* should be < 16 bits otherwise a codeword could have been parsed */
  113. mb->partial_bit_count = last_index - re_index;
  114. mb->partial_bit_buffer = re_cache & ~(-1u >> mb->partial_bit_count);
  115. re_index = last_index;
  116. break;
  117. }
  118. re_index += vlc_len;
  119. av_dlog(NULL, "run=%d level=%d\n", run, level);
  120. pos += run;
  121. if (pos >= 64)
  122. break;
  123. level = (level * factor_table[pos] + (1 << (dv_iweight_bits - 1))) >>
  124. dv_iweight_bits;
  125. block[scan_table[pos]] = level;
  126. UPDATE_CACHE(re, gb);
  127. }
  128. CLOSE_READER(re, gb);
  129. mb->pos = pos;
  130. }
  131. static inline void bit_copy(PutBitContext *pb, GetBitContext *gb)
  132. {
  133. int bits_left = get_bits_left(gb);
  134. while (bits_left >= MIN_CACHE_BITS) {
  135. put_bits(pb, MIN_CACHE_BITS, get_bits(gb, MIN_CACHE_BITS));
  136. bits_left -= MIN_CACHE_BITS;
  137. }
  138. if (bits_left > 0)
  139. put_bits(pb, bits_left, get_bits(gb, bits_left));
  140. }
  141. /* mb_x and mb_y are in units of 8 pixels */
  142. static int dv_decode_video_segment(AVCodecContext *avctx, void *arg)
  143. {
  144. DVVideoContext *s = avctx->priv_data;
  145. DVwork_chunk *work_chunk = arg;
  146. int quant, dc, dct_mode, class1, j;
  147. int mb_index, mb_x, mb_y, last_index;
  148. int y_stride, linesize;
  149. int16_t *block, *block1;
  150. int c_offset;
  151. uint8_t *y_ptr;
  152. const uint8_t *buf_ptr;
  153. PutBitContext pb, vs_pb;
  154. GetBitContext gb;
  155. BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1;
  156. LOCAL_ALIGNED_16(int16_t, sblock, [5 * DV_MAX_BPM], [64]);
  157. LOCAL_ALIGNED_16(uint8_t, mb_bit_buffer, [80 + FF_INPUT_BUFFER_PADDING_SIZE]); /* allow some slack */
  158. LOCAL_ALIGNED_16(uint8_t, vs_bit_buffer, [80 * 5 + FF_INPUT_BUFFER_PADDING_SIZE]); /* allow some slack */
  159. const int log2_blocksize = 3-s->avctx->lowres;
  160. int is_field_mode[5];
  161. av_assert1((((int) mb_bit_buffer) & 7) == 0);
  162. av_assert1((((int) vs_bit_buffer) & 7) == 0);
  163. memset(sblock, 0, 5 * DV_MAX_BPM * sizeof(*sblock));
  164. /* pass 1: read DC and AC coefficients in blocks */
  165. buf_ptr = &s->buf[work_chunk->buf_offset * 80];
  166. block1 = &sblock[0][0];
  167. mb1 = mb_data;
  168. init_put_bits(&vs_pb, vs_bit_buffer, 5 * 80);
  169. for (mb_index = 0; mb_index < 5; mb_index++, mb1 += s->sys->bpm, block1 += s->sys->bpm * 64) {
  170. /* skip header */
  171. quant = buf_ptr[3] & 0x0f;
  172. buf_ptr += 4;
  173. init_put_bits(&pb, mb_bit_buffer, 80);
  174. mb = mb1;
  175. block = block1;
  176. is_field_mode[mb_index] = 0;
  177. for (j = 0; j < s->sys->bpm; j++) {
  178. last_index = s->sys->block_sizes[j];
  179. init_get_bits(&gb, buf_ptr, last_index);
  180. /* get the DC */
  181. dc = get_sbits(&gb, 9);
  182. dct_mode = get_bits1(&gb);
  183. class1 = get_bits(&gb, 2);
  184. if (DV_PROFILE_IS_HD(s->sys)) {
  185. mb->idct_put = s->idct_put[0];
  186. mb->scan_table = s->dv_zigzag[0];
  187. mb->factor_table = &s->idct_factor[(j >= 4) * 4 * 16 * 64 +
  188. class1 * 16 * 64 +
  189. quant * 64];
  190. is_field_mode[mb_index] |= !j && dct_mode;
  191. } else {
  192. mb->idct_put = s->idct_put[dct_mode && log2_blocksize == 3];
  193. mb->scan_table = s->dv_zigzag[dct_mode];
  194. mb->factor_table =
  195. &s->idct_factor[(class1 == 3) * 2 * 22 * 64 +
  196. dct_mode * 22 * 64 +
  197. (quant + ff_dv_quant_offset[class1]) * 64];
  198. }
  199. dc = dc * 4;
  200. /* convert to unsigned because 128 is not added in the
  201. * standard IDCT */
  202. dc += 1024;
  203. block[0] = dc;
  204. buf_ptr += last_index >> 3;
  205. mb->pos = 0;
  206. mb->partial_bit_count = 0;
  207. av_dlog(avctx, "MB block: %d, %d ", mb_index, j);
  208. dv_decode_ac(&gb, mb, block);
  209. /* write the remaining bits in a new buffer only if the
  210. * block is finished */
  211. if (mb->pos >= 64)
  212. bit_copy(&pb, &gb);
  213. block += 64;
  214. mb++;
  215. }
  216. /* pass 2: we can do it just after */
  217. av_dlog(avctx, "***pass 2 size=%d MB#=%d\n", put_bits_count(&pb), mb_index);
  218. block = block1;
  219. mb = mb1;
  220. init_get_bits(&gb, mb_bit_buffer, put_bits_count(&pb));
  221. put_bits32(&pb, 0); // padding must be zeroed
  222. flush_put_bits(&pb);
  223. for (j = 0; j < s->sys->bpm; j++, block += 64, mb++) {
  224. if (mb->pos < 64 && get_bits_left(&gb) > 0) {
  225. dv_decode_ac(&gb, mb, block);
  226. /* if still not finished, no need to parse other blocks */
  227. if (mb->pos < 64)
  228. break;
  229. }
  230. }
  231. /* all blocks are finished, so the extra bytes can be used at
  232. * the video segment level */
  233. if (j >= s->sys->bpm)
  234. bit_copy(&vs_pb, &gb);
  235. }
  236. /* we need a pass over the whole video segment */
  237. av_dlog(avctx, "***pass 3 size=%d\n", put_bits_count(&vs_pb));
  238. block = &sblock[0][0];
  239. mb = mb_data;
  240. init_get_bits(&gb, vs_bit_buffer, put_bits_count(&vs_pb));
  241. put_bits32(&vs_pb, 0); // padding must be zeroed
  242. flush_put_bits(&vs_pb);
  243. for (mb_index = 0; mb_index < 5; mb_index++) {
  244. for (j = 0; j < s->sys->bpm; j++) {
  245. if (mb->pos < 64 && get_bits_left(&gb) > 0) {
  246. av_dlog(avctx, "start %d:%d\n", mb_index, j);
  247. dv_decode_ac(&gb, mb, block);
  248. }
  249. if (mb->pos >= 64 && mb->pos < 127)
  250. av_log(avctx, AV_LOG_ERROR,
  251. "AC EOB marker is absent pos=%d\n", mb->pos);
  252. block += 64;
  253. mb++;
  254. }
  255. }
  256. /* compute idct and place blocks */
  257. block = &sblock[0][0];
  258. mb = mb_data;
  259. for (mb_index = 0; mb_index < 5; mb_index++) {
  260. dv_calculate_mb_xy(s, work_chunk, mb_index, &mb_x, &mb_y);
  261. /* idct_put'ting luminance */
  262. if ((s->sys->pix_fmt == AV_PIX_FMT_YUV420P) ||
  263. (s->sys->pix_fmt == AV_PIX_FMT_YUV411P && mb_x >= (704 / 8)) ||
  264. (s->sys->height >= 720 && mb_y != 134)) {
  265. y_stride = (s->frame->linesize[0] <<
  266. ((!is_field_mode[mb_index]) * log2_blocksize));
  267. } else {
  268. y_stride = (2 << log2_blocksize);
  269. }
  270. y_ptr = s->frame->data[0] +
  271. ((mb_y * s->frame->linesize[0] + mb_x) << log2_blocksize);
  272. linesize = s->frame->linesize[0] << is_field_mode[mb_index];
  273. mb[0].idct_put(y_ptr, linesize, block + 0 * 64);
  274. if (s->sys->video_stype == 4) { /* SD 422 */
  275. mb[2].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 2 * 64);
  276. } else {
  277. mb[1].idct_put(y_ptr + (1 << log2_blocksize), linesize, block + 1 * 64);
  278. mb[2].idct_put(y_ptr + y_stride, linesize, block + 2 * 64);
  279. mb[3].idct_put(y_ptr + (1 << log2_blocksize) + y_stride, linesize, block + 3 * 64);
  280. }
  281. mb += 4;
  282. block += 4 * 64;
  283. /* idct_put'ting chrominance */
  284. c_offset = (((mb_y >> (s->sys->pix_fmt == AV_PIX_FMT_YUV420P)) * s->frame->linesize[1] +
  285. (mb_x >> ((s->sys->pix_fmt == AV_PIX_FMT_YUV411P) ? 2 : 1))) << log2_blocksize);
  286. for (j = 2; j; j--) {
  287. uint8_t *c_ptr = s->frame->data[j] + c_offset;
  288. if (s->sys->pix_fmt == AV_PIX_FMT_YUV411P && mb_x >= (704 / 8)) {
  289. uint64_t aligned_pixels[64 / 8];
  290. uint8_t *pixels = (uint8_t *) aligned_pixels;
  291. uint8_t *c_ptr1, *ptr1;
  292. int x, y;
  293. mb->idct_put(pixels, 8, block);
  294. for (y = 0; y < (1 << log2_blocksize); y++, c_ptr += s->frame->linesize[j], pixels += 8) {
  295. ptr1 = pixels + ((1 << (log2_blocksize))>>1);
  296. c_ptr1 = c_ptr + (s->frame->linesize[j] << log2_blocksize);
  297. for (x = 0; x < (1 << FFMAX(log2_blocksize - 1, 0)); x++) {
  298. c_ptr[x] = pixels[x];
  299. c_ptr1[x] = ptr1[x];
  300. }
  301. }
  302. block += 64;
  303. mb++;
  304. } else {
  305. y_stride = (mb_y == 134) ? (1 << log2_blocksize) :
  306. s->frame->linesize[j] << ((!is_field_mode[mb_index]) * log2_blocksize);
  307. linesize = s->frame->linesize[j] << is_field_mode[mb_index];
  308. (mb++)->idct_put(c_ptr, linesize, block);
  309. block += 64;
  310. if (s->sys->bpm == 8) {
  311. (mb++)->idct_put(c_ptr + y_stride, linesize, block);
  312. block += 64;
  313. }
  314. }
  315. }
  316. }
  317. return 0;
  318. }
  319. /* NOTE: exactly one frame must be given (120000 bytes for NTSC,
  320. * 144000 bytes for PAL - or twice those for 50Mbps) */
  321. static int dvvideo_decode_frame(AVCodecContext *avctx, void *data,
  322. int *got_frame, AVPacket *avpkt)
  323. {
  324. uint8_t *buf = avpkt->data;
  325. int buf_size = avpkt->size;
  326. DVVideoContext *s = avctx->priv_data;
  327. const uint8_t *vsc_pack;
  328. int apt, is16_9, ret;
  329. const AVDVProfile *sys;
  330. sys = avpriv_dv_frame_profile2(avctx, s->sys, buf, buf_size);
  331. if (!sys || buf_size < sys->frame_size) {
  332. av_log(avctx, AV_LOG_ERROR, "could not find dv frame profile\n");
  333. return -1; /* NOTE: we only accept several full frames */
  334. }
  335. if (sys != s->sys) {
  336. ret = ff_dv_init_dynamic_tables(s, sys);
  337. if (ret < 0) {
  338. av_log(avctx, AV_LOG_ERROR, "Error initializing the work tables.\n");
  339. return ret;
  340. }
  341. s->sys = sys;
  342. }
  343. s->frame = data;
  344. s->frame->key_frame = 1;
  345. s->frame->pict_type = AV_PICTURE_TYPE_I;
  346. avctx->pix_fmt = s->sys->pix_fmt;
  347. avctx->time_base = s->sys->time_base;
  348. ret = ff_set_dimensions(avctx, s->sys->width, s->sys->height);
  349. if (ret < 0)
  350. return ret;
  351. /* Determine the codec's sample_aspect ratio from the packet */
  352. vsc_pack = buf + 80 * 5 + 48 + 5;
  353. if (*vsc_pack == dv_video_control) {
  354. apt = buf[4] & 0x07;
  355. is16_9 = (vsc_pack[2] & 0x07) == 0x02 ||
  356. (!apt && (vsc_pack[2] & 0x07) == 0x07);
  357. ff_set_sar(avctx, s->sys->sar[is16_9]);
  358. }
  359. if ((ret = ff_get_buffer(avctx, s->frame, 0)) < 0)
  360. return ret;
  361. s->frame->interlaced_frame = 1;
  362. s->frame->top_field_first = 0;
  363. /* Determine the codec's field order from the packet */
  364. if ( *vsc_pack == dv_video_control ) {
  365. s->frame->top_field_first = !(vsc_pack[3] & 0x40);
  366. }
  367. s->buf = buf;
  368. avctx->execute(avctx, dv_decode_video_segment, s->work_chunks, NULL,
  369. dv_work_pool_size(s->sys), sizeof(DVwork_chunk));
  370. emms_c();
  371. /* return image */
  372. *got_frame = 1;
  373. return s->sys->frame_size;
  374. }
  375. AVCodec ff_dvvideo_decoder = {
  376. .name = "dvvideo",
  377. .long_name = NULL_IF_CONFIG_SMALL("DV (Digital Video)"),
  378. .type = AVMEDIA_TYPE_VIDEO,
  379. .id = AV_CODEC_ID_DVVIDEO,
  380. .priv_data_size = sizeof(DVVideoContext),
  381. .init = dvvideo_decode_init,
  382. .decode = dvvideo_decode_frame,
  383. .capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
  384. .max_lowres = 3,
  385. };