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.

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