rawdv.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:15k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * rawdv.c : raw DV input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2004 VideoLAN
  5.  * $Id: rawdv.c 7665 2004-05-15 10:52:56Z fenrir $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <vlc/vlc.h>
  28. #include <vlc/input.h>
  29. /*****************************************************************************
  30.  * Module descriptor
  31.  *****************************************************************************/
  32. static int  Open ( vlc_object_t * );
  33. static void Close( vlc_object_t * );
  34. vlc_module_begin();
  35.     set_description( _("raw DV demuxer") );
  36.     set_capability( "demux2", 2 );
  37.     set_callbacks( Open, Close );
  38.     add_shortcut( "rawdv" );
  39. vlc_module_end();
  40. /*****************************************************************************
  41.  A little bit of background information (copied over from libdv glossary).
  42.  - DIF block: A block of 80 bytes. This is the basic data framing unit of the
  43.        DVC tape format, analogous to sectors of hard disc.
  44.  - Video Section: Each DIF sequence contains a video section, consisting of
  45.        135 DIF blocks, which are further subdivided into Video Segments.
  46.  - Video Segment: A video segment consists of 5 DIF blocks, each corresponding
  47.        to a single compressed macroblock.
  48. *****************************************************************************/
  49. /*****************************************************************************
  50.  * Constants
  51.  *****************************************************************************/
  52. #define DV_PAL_FRAME_SIZE  144000
  53. #define DV_NTSC_FRAME_SIZE 122000
  54. /*****************************************************************************
  55.  * Definitions of structures used by this plugin
  56.  *****************************************************************************/
  57. typedef struct {
  58.     int8_t sct;      /* Section type (header,subcode,aux,audio,video) */
  59.     int8_t dsn;      /* DIF sequence number (0-12) */
  60.     int    fsc;      /* First (0)/Second channel (1) */
  61.     int8_t dbn;      /* DIF block number (0-134) */
  62. } dv_id_t;
  63. typedef struct {
  64.     int    dsf;      /* DIF sequence flag: 525/60 (0) or 625,50 (1) */
  65.     int8_t apt;
  66.     int    tf1;
  67.     int8_t ap1;
  68.     int    tf2;
  69.     int8_t ap2;
  70.     int    tf3;
  71.     int8_t ap3;
  72. } dv_header_t;
  73. struct demux_sys_t
  74. {
  75.     int    frame_size;
  76.     es_out_id_t *p_es_video;
  77.     es_format_t  fmt_video;
  78.     es_out_id_t *p_es_audio;
  79.     es_format_t  fmt_audio;
  80.     int    i_dsf;
  81.     double f_rate;
  82.     int    i_bitrate;
  83.     /* program clock reference (in units of 90kHz) */
  84.     mtime_t i_pcr;
  85. };
  86. /*****************************************************************************
  87.  * Local prototypes
  88.  *****************************************************************************/
  89. static int Demux( demux_t * );
  90. static int Control( demux_t *, int i_query, va_list args );
  91. static block_t *dv_extract_audio( demux_t *p_demux,
  92.                                   block_t* p_frame_block );
  93. /*****************************************************************************
  94.  * Open: initializes raw DV demux structures
  95.  *****************************************************************************/
  96. static int Open( vlc_object_t * p_this )
  97. {
  98.     demux_t     *p_demux = (demux_t*)p_this;
  99.     demux_sys_t *p_sys;
  100.     byte_t      *p_peek, *p_peek_backup;
  101.     uint32_t    i_dword;
  102.     dv_header_t dv_header;
  103.     dv_id_t     dv_id;
  104.     char        *psz_ext;
  105.     /* It isn't easy to recognize a raw DV stream. The chances that we'll
  106.      * mistake a stream from another type for a raw DV stream are too high, so
  107.      * we'll rely on the file extension to trigger this demux. Alternatively,
  108.      * it is possible to force this demux. */
  109.     /* Check for DV file extension */
  110.     psz_ext = strrchr( p_demux->psz_path, '.' );
  111.     if( ( !psz_ext || strcasecmp( psz_ext, ".dv") ) &&
  112.         strcmp(p_demux->psz_demux, "rawdv") )
  113.     {
  114.         return VLC_EGENERIC;
  115.     }
  116.     if( stream_Peek( p_demux->s, &p_peek, DV_PAL_FRAME_SIZE ) <
  117.         DV_NTSC_FRAME_SIZE )
  118.     {
  119.         /* Stream too short ... */
  120.         msg_Err( p_demux, "cannot peek()" );
  121.         return VLC_EGENERIC;
  122.     }
  123.     p_peek_backup = p_peek;
  124.     /* fill in the dv_id_t structure */
  125.     i_dword = GetDWBE( p_peek ); p_peek += 4;
  126.     dv_id.sct = i_dword >> (32 - 3);
  127.     i_dword <<= 8;
  128.     dv_id.dsn = i_dword >> (32 - 4);
  129.     i_dword <<= 4;
  130.     dv_id.fsc = i_dword >> (32 - 1);
  131.     i_dword <<= 4;
  132.     dv_id.dbn = i_dword >> (32 - 8);
  133.     i_dword <<= 8;
  134.     if( dv_id.sct != 0 )
  135.     {
  136.         msg_Warn( p_demux, "not a raw DV stream header" );
  137.         return VLC_EGENERIC;
  138.     }
  139.     /* fill in the dv_header_t structure */
  140.     dv_header.dsf = i_dword >> (32 - 1);
  141.     i_dword <<= 1;
  142.     if( i_dword >> (32 - 1) ) /* incorrect bit */
  143.     {
  144.         msg_Warn( p_demux, "incorrect bit" );
  145.         return VLC_EGENERIC;
  146.     }
  147.     i_dword = GetDWBE( p_peek ); p_peek += 4;
  148.     i_dword <<= 5;
  149.     dv_header.apt = i_dword >> (32 - 3);
  150.     i_dword <<= 3;
  151.     dv_header.tf1 = i_dword >> (32 - 1);
  152.     i_dword <<= 5;
  153.     dv_header.ap1 = i_dword >> (32 - 3);
  154.     i_dword <<= 3;
  155.     dv_header.tf2 = i_dword >> (32 - 1);
  156.     i_dword <<= 5;
  157.     dv_header.ap2 = i_dword >> (32 - 3);
  158.     i_dword <<= 3;
  159.     dv_header.tf3 = i_dword >> (32 - 1);
  160.     i_dword <<= 5;
  161.     dv_header.ap3 = i_dword >> (32 - 3);
  162.     p_peek += 72;                                  /* skip rest of DIF block */
  163.     /* Set p_input field */
  164.     p_demux->pf_demux   = Demux;
  165.     p_demux->pf_control = Control;
  166.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  167.     p_sys->i_dsf = dv_header.dsf;
  168.     p_sys->frame_size = dv_header.dsf ? 12 * 150 * 80 : 10 * 150 * 80;
  169.     p_sys->f_rate = dv_header.dsf ? 25 : 29.97;
  170.     p_sys->i_pcr = 1;
  171.     p_sys->p_es_video = NULL;
  172.     p_sys->p_es_audio = NULL;
  173.     p_sys->i_bitrate = 0;
  174.     es_format_Init( &p_sys->fmt_video, VIDEO_ES, VLC_FOURCC('d','v','s','d') );
  175.     p_sys->fmt_video.video.i_width = 720;
  176.     p_sys->fmt_video.video.i_height= dv_header.dsf ? 576 : 480;;
  177.     /* FIXME FIXME */
  178. #if 0
  179.     /* necessary because input_SplitBuffer() will only get
  180.      * INPUT_DEFAULT_BUFSIZE bytes at a time. */
  181.     p_input->i_bufsize = p_sys->frame_size;
  182. #endif
  183.     p_sys->p_es_video = es_out_Add( p_demux->out, &p_sys->fmt_video );
  184.     /* Audio stuff */
  185.     p_peek = p_peek_backup + 80*6+80*16*3 + 3; /* beginning of AAUX pack */
  186.     if( *p_peek == 0x50 )
  187.     {
  188.         es_format_Init( &p_sys->fmt_audio, AUDIO_ES,
  189.                         VLC_FOURCC('a','r','a','w') );
  190.         p_sys->fmt_audio.audio.i_channels = 2;
  191.         switch( (p_peek[4] >> 3) & 0x07 )
  192.         {
  193.         case 0:
  194.             p_sys->fmt_audio.audio.i_rate = 48000;
  195.             break;
  196.         case 1:
  197.             p_sys->fmt_audio.audio.i_rate = 44100;
  198.             break;
  199.         case 2:
  200.         default:
  201.             p_sys->fmt_audio.audio.i_rate = 32000;
  202.             break;
  203.         }
  204.         /* 12 bits non-linear will be converted to 16 bits linear */
  205.         p_sys->fmt_audio.audio.i_bitspersample = 16;
  206.         p_sys->p_es_audio = es_out_Add( p_demux->out, &p_sys->fmt_audio );
  207.     }
  208.     return VLC_SUCCESS;
  209. }
  210. /*****************************************************************************
  211.  * Close: frees unused data
  212.  *****************************************************************************/
  213. static void Close( vlc_object_t *p_this )
  214. {
  215.     demux_t     *p_demux = (demux_t*)p_this;
  216.     demux_sys_t *p_sys  = p_demux->p_sys;
  217.     free( p_sys );
  218. }
  219. /*****************************************************************************
  220.  * Demux: reads and demuxes data packets
  221.  *****************************************************************************
  222.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  223.  *****************************************************************************/
  224. static int Demux( demux_t *p_demux )
  225. {
  226.     demux_sys_t *p_sys  = p_demux->p_sys;
  227.     block_t     *p_block;
  228.     vlc_bool_t  b_audio = VLC_FALSE;
  229.     /* Call the pace control */
  230.     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_pcr );
  231.     if( ( p_block = stream_Block( p_demux->s, p_sys->frame_size ) ) == NULL )
  232.     {
  233.         /* EOF */
  234.         return 0;
  235.     }
  236.     if( p_sys->p_es_audio )
  237.     {
  238.         es_out_Control( p_demux->out, ES_OUT_GET_ES_STATE,
  239.                         p_sys->p_es_audio, &b_audio );
  240.     }
  241.     p_block->i_dts =
  242.     p_block->i_pts = p_sys->i_pcr;
  243.     if( b_audio )
  244.     {
  245.         block_t *p_audio_block = dv_extract_audio( p_demux, p_block );
  246.         if( p_audio_block )
  247.         {
  248.             p_audio_block->i_pts =
  249.             p_audio_block->i_dts = p_sys->i_pcr;
  250.             es_out_Send( p_demux->out, p_sys->p_es_audio, p_audio_block );
  251.         }
  252.     }
  253.     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
  254.     p_sys->i_pcr += ( I64C(1000000) / p_sys->f_rate );
  255.     return 1;
  256. }
  257. /*****************************************************************************
  258.  * Control:
  259.  *****************************************************************************/
  260. static int Control( demux_t *p_demux, int i_query, va_list args )
  261. {
  262.     demux_sys_t *p_sys  = p_demux->p_sys;
  263.     /* XXX: DEMUX_SET_TIME is precise here */
  264.     return demux2_vaControlHelper( p_demux->s,
  265.                                    0, -1,
  266.                                    p_sys->frame_size * p_sys->f_rate * 8,
  267.                                    p_sys->frame_size, i_query, args );
  268. }
  269. static const uint16_t dv_audio_shuffle525[10][9] = {
  270.   {  0, 30, 60, 20, 50, 80, 10, 40, 70 }, /* 1st channel */
  271.   {  6, 36, 66, 26, 56, 86, 16, 46, 76 },
  272.   { 12, 42, 72,  2, 32, 62, 22, 52, 82 },
  273.   { 18, 48, 78,  8, 38, 68, 28, 58, 88 },
  274.   { 24, 54, 84, 14, 44, 74,  4, 34, 64 },
  275.   {  1, 31, 61, 21, 51, 81, 11, 41, 71 }, /* 2nd channel */
  276.   {  7, 37, 67, 27, 57, 87, 17, 47, 77 },
  277.   { 13, 43, 73,  3, 33, 63, 23, 53, 83 },
  278.   { 19, 49, 79,  9, 39, 69, 29, 59, 89 },
  279.   { 25, 55, 85, 15, 45, 75,  5, 35, 65 },
  280. };
  281. static const uint16_t dv_audio_shuffle625[12][9] = {
  282.   {   0,  36,  72,  26,  62,  98,  16,  52,  88}, /* 1st channel */
  283.   {   6,  42,  78,  32,  68, 104,  22,  58,  94},
  284.   {  12,  48,  84,   2,  38,  74,  28,  64, 100},
  285.   {  18,  54,  90,   8,  44,  80,  34,  70, 106},
  286.   {  24,  60,  96,  14,  50,  86,   4,  40,  76},
  287.   {  30,  66, 102,  20,  56,  92,  10,  46,  82},
  288.   {   1,  37,  73,  27,  63,  99,  17,  53,  89}, /* 2nd channel */
  289.   {   7,  43,  79,  33,  69, 105,  23,  59,  95},
  290.   {  13,  49,  85,   3,  39,  75,  29,  65, 101},
  291.   {  19,  55,  91,   9,  45,  81,  35,  71, 107},
  292.   {  25,  61,  97,  15,  51,  87,   5,  41,  77},
  293.   {  31,  67, 103,  21,  57,  93,  11,  47,  83},
  294. };
  295. static inline uint16_t dv_audio_12to16( uint16_t sample )
  296. {
  297.     uint16_t shift, result;
  298.     sample = (sample < 0x800) ? sample : sample | 0xf000;
  299.     shift = (sample & 0xf00) >> 8;
  300.     if (shift < 0x2 || shift > 0xd) {
  301.         result = sample;
  302.     } else if (shift < 0x8) {
  303.         shift--;
  304.         result = (sample - (256 * shift)) << shift;
  305.     } else {
  306.         shift = 0xe - shift;
  307.         result = ((sample + ((256 * shift) + 1)) << shift) - 1;
  308.     }
  309.     return result;
  310. }
  311. static block_t *dv_extract_audio( demux_t *p_demux,
  312.                                   block_t* p_frame_block )
  313. {
  314.     demux_sys_t *p_sys  = p_demux->p_sys;
  315.     block_t *p_block;
  316.     uint8_t *p_frame, *p_buf;
  317.     int i_audio_quant, i_samples, i_size, i_half_ch;
  318.     const uint16_t (*audio_shuffle)[9];
  319.     int i, j, d, of;
  320.     uint16_t lc;
  321.     /* Beginning of AAUX pack */
  322.     p_buf = p_frame_block->p_buffer + 80*6+80*16*3 + 3;
  323.     if( *p_buf != 0x50 ) return NULL;
  324.     i_audio_quant = p_buf[4] & 0x07; /* 0 - 16bit, 1 - 12bit */
  325.     if( i_audio_quant > 1 )
  326.     {
  327.         msg_Dbg( p_demux, "Unsupported quantization for DV audio");
  328.         return NULL;
  329.     }
  330.     i_samples = p_buf[1] & 0x3f; /* samples in this frame - min samples */
  331.     switch( (p_buf[4] >> 3) & 0x07 )
  332.     {
  333.     case 0:
  334.         i_size = p_sys->i_dsf ? 1896 : 1580;
  335.         break;
  336.     case 1:
  337.         i_size = p_sys->i_dsf ? 1742 : 1452;
  338.         break;
  339.     case 2:
  340.     default:
  341.         i_size = p_sys->i_dsf ? 1264 : 1053;
  342.         break;
  343.     }
  344.     i_size = (i_size + i_samples) * 4; /* 2ch, 2bytes */
  345.     p_block = block_New( p_demux, i_size );
  346.     /* for each DIF segment */
  347.     p_frame = p_frame_block->p_buffer;
  348.     audio_shuffle = p_sys->i_dsf ? dv_audio_shuffle625 : dv_audio_shuffle525;
  349.     i_half_ch = (p_sys->i_dsf ? 12 : 10)/2;
  350.     for( i = 0; i < (p_sys->i_dsf ? 12 : 10); i++ )
  351.     {
  352.         p_frame += 6 * 80; /* skip DIF segment header */
  353.         if( i_audio_quant == 1 && i == i_half_ch ) break;
  354.         for( j = 0; j < 9; j++ )
  355.         {
  356.             for( d = 8; d < 80; d += 2 )
  357.             {
  358.                 if( i_audio_quant == 0 )
  359.                 {
  360.                     /* 16bit quantization */
  361.                     of = audio_shuffle[i][j] + (d - 8) / 2 *
  362.                            (p_sys->i_dsf ? 108 : 90);
  363.                     if( of * 2 >= i_size ) continue;
  364.                     /* big endian */
  365.                     p_block->p_buffer[of*2] = p_frame[d+1];
  366.                     p_block->p_buffer[of*2+1] = p_frame[d];
  367.                     if( p_block->p_buffer[of*2+1] == 0x80 &&
  368.                         p_block->p_buffer[of*2] == 0x00 )
  369.                         p_block->p_buffer[of*2+1] = 0;
  370.                 }
  371.                 else
  372.                 {
  373.                     /* 12bit quantization */
  374.                     lc = ((uint16_t)p_frame[d] << 4) | 
  375.                          ((uint16_t)p_frame[d+2] >> 4);
  376.                     lc = (lc == 0x800 ? 0 : dv_audio_12to16(lc));
  377.                     of = audio_shuffle[i][j] + (d - 8) / 3 *
  378.                          (p_sys->i_dsf ? 108 : 90);
  379.                     if( of*2 >= i_size ) continue;
  380.                     /* big endian */
  381.                     p_block->p_buffer[of*2] = lc & 0xff;
  382.                     p_block->p_buffer[of*2+1] = lc >> 8;
  383.                     ++d;
  384.                 }
  385.             }
  386.             p_frame += 16 * 80; /* 15 Video DIFs + 1 Audio DIF */
  387.         }
  388.     }
  389.     return p_block;
  390. }