libavcodec/dv.c
5d2231ee
 /*
  * DV decoder
406792e7
  * Copyright (c) 2002 Fabrice Bellard
  * Copyright (c) 2004 Roman Shaposhnik
5d2231ee
  *
115329f1
  * DV encoder
406792e7
  * Copyright (c) 2003 Roman Shaposhnik
4fa1c4fa
  *
0b297700
  * 50 Mbps (DVCPRO50) support
  * Copyright (c) 2006 Daniel Maas <dmaas@maasdigital.com>
  *
f8007a14
  * 100 Mbps (DVCPRO HD) support
  * Initial code by Daniel Maas <dmaas@maasdigital.com> (funded by BBC R&D)
  * Final code by Roman Shaposhnik
  *
4fa1c4fa
  * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth
  * of DV technical info.
  *
b78e7197
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
5d2231ee
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
b78e7197
  * version 2.1 of the License, or (at your option) any later version.
5d2231ee
  *
b78e7197
  * FFmpeg is distributed in the hope that it will be useful,
5d2231ee
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
b78e7197
  * License along with FFmpeg; if not, write to the Free Software
5509bffa
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
5d2231ee
  */
983e3246
 
 /**
ba87f080
  * @file
4fa1c4fa
  * DV codec.
983e3246
  */
a1e98f19
 
218aefce
 #include "libavutil/internal.h"
94bed8e5
 #include "libavutil/pixdesc.h"
ee0ebd3c
 
5d2231ee
 #include "avcodec.h"
ee0ebd3c
 #include "dv.h"
 #include "dvdata.h"
9106a698
 #include "get_bits.h"
6a047213
 #include "internal.h"
b2755007
 #include "put_bits.h"
5d2231ee
 #include "simple_idct.h"
 
 /* XXX: also include quantization */
4fa772ac
 RL_VLC_ELEM ff_dv_rl_vlc[1664];
c3d470b4
 
ee0ebd3c
 static inline void dv_calc_mb_coordinates(const AVDVProfile *d, int chan,
                                           int seq, int slot, uint16_t *tbl)
195b3490
 {
ee0ebd3c
     static const uint8_t off[]   = {  2,  6,  8, 0,  4 };
1bf6e565
     static const uint8_t shuf1[] = { 36, 18, 54, 0, 72 };
     static const uint8_t shuf2[] = { 24, 12, 36, 0, 48 };
ee0ebd3c
     static const uint8_t shuf3[] = { 18,  9, 27, 0, 36 };
195b3490
 
ee0ebd3c
     static const uint8_t l_start[]          = { 0, 4, 9, 13, 18, 22, 27, 31, 36, 40 };
1bf6e565
     static const uint8_t l_start_shuffled[] = { 9, 4, 13, 0, 18 };
195b3490
 
ee0ebd3c
     static const uint8_t serpent1[] = {
         0, 1, 2, 2, 1, 0,
         0, 1, 2, 2, 1, 0,
         0, 1, 2, 2, 1, 0,
         0, 1, 2, 2, 1, 0,
         0, 1, 2
     };
     static const uint8_t serpent2[] = {
         0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 0,
         0, 1, 2, 3, 4, 5, 5, 4, 3, 2, 1, 0,
         0, 1, 2, 3, 4, 5
     };
 
     static const uint8_t remap[][2] = {
         {  0,  0 }, {  0,  0 }, {  0,  0 }, {  0,  0 }, /* dummy */
         {  0,  0 }, {  0,  1 }, {  0,  2 }, {  0,  3 }, { 10,  0 },
         { 10,  1 }, { 10,  2 }, { 10,  3 }, { 20,  0 }, { 20,  1 },
         { 20,  2 }, { 20,  3 }, { 30,  0 }, { 30,  1 }, { 30,  2 },
         { 30,  3 }, { 40,  0 }, { 40,  1 }, { 40,  2 }, { 40,  3 },
         { 50,  0 }, { 50,  1 }, { 50,  2 }, { 50,  3 }, { 60,  0 },
         { 60,  1 }, { 60,  2 }, { 60,  3 }, { 70,  0 }, { 70,  1 },
         { 70,  2 }, { 70,  3 }, {  0, 64 }, {  0, 65 }, {  0, 66 },
         { 10, 64 }, { 10, 65 }, { 10, 66 }, { 20, 64 }, { 20, 65 },
         { 20, 66 }, { 30, 64 }, { 30, 65 }, { 30, 66 }, { 40, 64 },
         { 40, 65 }, { 40, 66 }, { 50, 64 }, { 50, 65 }, { 50, 66 },
         { 60, 64 }, { 60, 65 }, { 60, 66 }, { 70, 64 }, { 70, 65 },
         { 70, 66 }, {  0, 67 }, { 20, 67 }, { 40, 67 }, { 60, 67 }
     };
195b3490
 
     int i, k, m;
     int x, y, blk;
 
ee0ebd3c
     for (m = 0; m < 5; m++) {
         switch (d->width) {
         case 1440:
             blk = (chan * 11 + seq) * 27 + slot;
 
             if (chan == 0 && seq == 11) {
                 x = m * 27 + slot;
                 if (x < 90) {
                     y = 0;
                 } else {
                     x = (x - 90) * 2;
                     y = 67;
                 }
             } else {
                 i = (4 * chan + blk + off[m]) % 11;
                 k = (blk / 11) % 27;
 
                 x = shuf1[m] + (chan & 1) * 9 + k % 9;
                 y = (i * 3 + k / 9) * 2 + (chan >> 1) + 1;
             }
             tbl[m] = (x << 1) | (y << 9);
             break;
         case 1280:
             blk = (chan * 10 + seq) * 27 + slot;
 
             i = (4 * chan + (seq / 5) + 2 * blk + off[m]) % 10;
             k = (blk / 5) % 27;
 
             x = shuf1[m] + (chan & 1) * 9 + k % 9;
             y = (i * 3 + k / 9) * 2 + (chan >> 1) + 4;
 
             if (x >= 80) {
                 x = remap[y][0] + ((x - 80) << (y > 59));
                 y = remap[y][1];
             }
             tbl[m] = (x << 1) | (y << 9);
             break;
         case 960:
             blk = (chan * 10 + seq) * 27 + slot;
 
             i = (4 * chan + (seq / 5) + 2 * blk + off[m]) % 10;
             k = (blk / 5) % 27 + (i & 1) * 3;
 
             x      = shuf2[m]   + k % 6 +  6 * (chan  & 1);
             y      = l_start[i] + k / 6 + 45 * (chan >> 1);
             tbl[m] = (x << 1) | (y << 9);
             break;
195b3490
         case 720:
ee0ebd3c
             switch (d->pix_fmt) {
             case AV_PIX_FMT_YUV422P:
                 x = shuf3[m] + slot / 3;
                 y = serpent1[slot] +
                     ((((seq + off[m]) % d->difseg_size) << 1) + chan) * 3;
                 tbl[m] = (x << 1) | (y << 8);
                 break;
             case AV_PIX_FMT_YUV420P:
                 x = shuf3[m] + slot / 3;
                 y = serpent1[slot] +
                     ((seq + off[m]) % d->difseg_size) * 3;
                 tbl[m] = (x << 1) | (y << 9);
                 break;
             case AV_PIX_FMT_YUV411P:
                 i = (seq + off[m]) % d->difseg_size;
                 k = slot + ((m == 1 || m == 2) ? 3 : 0);
 
                 x = l_start_shuffled[m] + k / 6;
                 y = serpent2[k] + i * 6;
                 if (x > 21)
                     y = y * 2 - i * 6;
                 tbl[m] = (x << 2) | (y << 8);
                 break;
             }
195b3490
         default:
ee0ebd3c
             break;
195b3490
         }
     }
 }
 
05afc5f5
 /* quantization quanta by QNO for DV100 */
 static const uint8_t dv100_qstep[16] = {
     1, /* QNO = 0 and 1 both have no quantization */
     1,
     2, 3, 4, 5, 6, 7, 8, 16, 18, 20, 22, 24, 28, 52
 };
 
ee0ebd3c
 static const uint8_t dv_quant_areas[4] = { 6, 21, 43, 64 };
05afc5f5
 
f6ee61fb
 int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const AVDVProfile *d)
c3d470b4
 {
ee0ebd3c
     int j, i, c, s, p;
c3d470b4
 
d349afb0
     p = i = 0;
     for (c = 0; c < d->n_difchan; c++) {
         for (s = 0; s < d->difseg_size; s++) {
             p += 6;
             for (j = 0; j < 27; j++) {
                 p += !(j % 3);
                 if (!(DV_PROFILE_IS_1080i50(d) && c != 0 && s == 11) &&
                     !(DV_PROFILE_IS_720p50(d) && s > 9)) {
ee0ebd3c
                     dv_calc_mb_coordinates(d, c, s, j, &ctx->work_chunks[i].mb_coordinates[0]);
                     ctx->work_chunks[i++].buf_offset = p;
ff16d6e4
                 }
d349afb0
                 p += 5;
c3d470b4
             }
         }
d349afb0
     }
c3d470b4
 
a21fd75f
     return 0;
 }
 
d724fe66
 av_cold int ff_dvvideo_init(AVCodecContext *avctx)
5d2231ee
 {
6faa4645
     DVVideoContext *s = avctx->priv_data;
f94036f1
     static int done = 0;
e15c3302
     int i, j;
5d2231ee
 
     if (!done) {
7458ccbb
         VLC dv_vlc;
ee0ebd3c
         uint16_t  new_dv_vlc_bits[NB_DV_VLC * 2];
         uint8_t    new_dv_vlc_len[NB_DV_VLC * 2];
         uint8_t    new_dv_vlc_run[NB_DV_VLC * 2];
         int16_t  new_dv_vlc_level[NB_DV_VLC * 2];
5d2231ee
 
         done = 1;
 
bb270c08
         /* it's faster to include sign bit in a generic VLC parsing scheme */
f94036f1
         for (i = 0, j = 0; i < NB_DV_VLC; i++, j++) {
21710ea8
             new_dv_vlc_bits[j]  = ff_dv_vlc_bits[i];
             new_dv_vlc_len[j]   = ff_dv_vlc_len[i];
             new_dv_vlc_run[j]   = ff_dv_vlc_run[i];
             new_dv_vlc_level[j] = ff_dv_vlc_level[i];
bb270c08
 
21710ea8
             if (ff_dv_vlc_level[i]) {
bb270c08
                 new_dv_vlc_bits[j] <<= 1;
                 new_dv_vlc_len[j]++;
 
                 j++;
21710ea8
                 new_dv_vlc_bits[j]  = (ff_dv_vlc_bits[i] << 1) | 1;
                 new_dv_vlc_len[j]   =  ff_dv_vlc_len[i] + 1;
                 new_dv_vlc_run[j]   =  ff_dv_vlc_run[i];
                 new_dv_vlc_level[j] = -ff_dv_vlc_level[i];
bb270c08
             }
         }
115329f1
 
5d2231ee
         /* NOTE: as a trick, we use the fact the no codes are unused
ee0ebd3c
          * to accelerate the parsing of partial codes */
         init_vlc(&dv_vlc, TEX_VLC_BITS, j, new_dv_vlc_len,
                  1, 1, new_dv_vlc_bits, 2, 2, 0);
4fa772ac
         av_assert1(dv_vlc.table_size == 1664);
aa066582
 
ee0ebd3c
         for (i = 0; i < dv_vlc.table_size; i++) {
f94036f1
             int code = dv_vlc.table[i][0];
             int len  = dv_vlc.table[i][1];
5d2231ee
             int level, run;
115329f1
 
ee0ebd3c
             if (len < 0) { // more bits needed
f94036f1
                 run   = 0;
                 level = code;
5d2231ee
             } else {
ee0ebd3c
                 run   = new_dv_vlc_run[code] + 1;
f94036f1
                 level = new_dv_vlc_level[code];
5d2231ee
             }
d724fe66
             ff_dv_rl_vlc[i].len   = len;
             ff_dv_rl_vlc[i].level = level;
             ff_dv_rl_vlc[i].run   = run;
5d2231ee
         }
e96b4a53
         ff_free_vlc(&dv_vlc);
5d2231ee
     }
7be166e4
 
f94036f1
     s->avctx = avctx;
580a7465
     avctx->chroma_sample_location = AVCHROMA_LOC_TOPLEFT;
115329f1
 
5d2231ee
     return 0;
 }