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