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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * cdda.c : CD digital audio input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000, 2003 VideoLAN
  5.  * $Id: cdda.c 8606 2004-08-31 18:32:54Z hartman $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Gildas Bazin <gbazin@netcourrier.com>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * Preamble
  26.  *****************************************************************************/
  27. #include <stdlib.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/input.h>
  30. #include "codecs.h"
  31. #include "vcd/cdrom.h"
  32. /*****************************************************************************
  33.  * Module descriptior
  34.  *****************************************************************************/
  35. static int  Open ( vlc_object_t * );
  36. static void Close( vlc_object_t * );
  37. #define CACHING_TEXT N_("Caching value in ms")
  38. #define CACHING_LONGTEXT N_( 
  39.     "Allows you to modify the default caching value for cdda streams. This " 
  40.     "value should be set in milliseconds units." )
  41. vlc_module_begin();
  42.     set_description( _("Audio CD input") );
  43.     set_capability( "access2", 10 );
  44.     set_callbacks( Open, Close );
  45.     add_usage_hint( N_("[cdda:][device][@[track]]") );
  46.     add_integer( "cdda-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
  47.                  CACHING_LONGTEXT, VLC_TRUE );
  48.     add_shortcut( "cdda" );
  49.     add_shortcut( "cddasimple" );
  50. vlc_module_end();
  51. /* how many blocks VCDRead will read in each loop */
  52. #define CDDA_BLOCKS_ONCE 20
  53. #define CDDA_DATA_ONCE   (CDDA_BLOCKS_ONCE * CDDA_DATA_SIZE)
  54. /*****************************************************************************
  55.  * Access: local prototypes
  56.  *****************************************************************************/
  57. struct access_sys_t
  58. {
  59.     vcddev_t    *vcddev;                            /* vcd device descriptor */
  60.     /* Title infos */
  61.     int           i_titles;
  62.     input_title_t *title[99];         /* No more that 99 track in a cd-audio */
  63.     /* Current position */
  64.     int         i_sector;                                  /* Current Sector */
  65.     int *       p_sectors;                                  /* Track sectors */
  66.     /* Wave header for the output data */
  67.     WAVEHEADER  waveheader;
  68.     vlc_bool_t  b_header;
  69. };
  70. static block_t *Block( access_t * );
  71. static int      Seek( access_t *, int64_t );
  72. static int      Control( access_t *, int, va_list );
  73. /*****************************************************************************
  74.  * Open: open cdda
  75.  *****************************************************************************/
  76. static int Open( vlc_object_t *p_this )
  77. {
  78.     access_t     *p_access = (access_t*)p_this;
  79.     access_sys_t *p_sys;
  80.     vcddev_t *vcddev;
  81.     char *psz_name;
  82.     int  i;
  83.     if( !p_access->psz_path || !*p_access->psz_path )
  84.     {
  85.         /* Only when selected */
  86.         if( !p_this->b_force ) return VLC_EGENERIC;
  87.         psz_name = var_CreateGetString( p_this, "cd-audio" );
  88.         if( !psz_name || !*psz_name )
  89.         {
  90.             if( psz_name ) free( psz_name );
  91.             return VLC_EGENERIC;
  92.         }
  93.     }
  94.     else psz_name = strdup( p_access->psz_path );
  95.     /* Open CDDA */
  96.     if( (vcddev = ioctl_Open( VLC_OBJECT(p_access), psz_name )) == NULL )
  97.     {
  98.         msg_Warn( p_access, "could not open %s", psz_name );
  99.         free( psz_name );
  100.         return VLC_EGENERIC;
  101.     }
  102.     free( psz_name );
  103.     /* Set up p_access */
  104.     p_access->pf_read = NULL;
  105.     p_access->pf_block = Block;
  106.     p_access->pf_control = Control;
  107.     p_access->pf_seek = Seek;
  108.     p_access->info.i_update = 0;
  109.     p_access->info.i_size = 0;
  110.     p_access->info.i_pos = 0;
  111.     p_access->info.b_eof = VLC_FALSE;
  112.     p_access->info.i_title = 0;
  113.     p_access->info.i_seekpoint = 0;
  114.     p_access->p_sys = p_sys = malloc( sizeof( access_sys_t ) );
  115.     memset( p_sys, 0, sizeof( access_sys_t ) );
  116.     p_sys->vcddev = vcddev;
  117.     p_sys->b_header = VLC_FALSE;
  118.     /* We read the Table Of Content information */
  119.     p_sys->i_titles = ioctl_GetTracksMap( VLC_OBJECT(p_access),
  120.                                           p_sys->vcddev, &p_sys->p_sectors );
  121.     if( p_sys->i_titles < 0 )
  122.     {
  123.         msg_Err( p_access, "unable to count tracks" );
  124.         goto error;
  125.     }
  126.     else if( p_sys->i_titles <= 0 )
  127.     {
  128.         msg_Err( p_access, "no audio tracks found" );
  129.         goto error;
  130.     }
  131.     /* Build title table */
  132.     for( i = 0; i < p_sys->i_titles; i++ )
  133.     {
  134.         input_title_t *t = p_sys->title[i] = vlc_input_title_New();
  135.         msg_Dbg( p_access, "title[%d] start=%d", i, p_sys->p_sectors[i] );
  136.         msg_Dbg( p_access, "title[%d] end=%d", i, p_sys->p_sectors[i+1] );
  137.         asprintf( &t->psz_name, _("Track %i"), i + 1 );
  138.         t->i_size = ( p_sys->p_sectors[i+1] - p_sys->p_sectors[i] ) *
  139.                     (int64_t)CDDA_DATA_SIZE;
  140.         t->i_length = I64C(1000000) * t->i_size / 44100 / 4;
  141.     }
  142.     p_sys->i_sector = p_sys->p_sectors[0];
  143.     p_access->info.i_size = p_sys->title[0]->i_size;
  144.     /* Build a WAV header for the output data */
  145.     memset( &p_sys->waveheader, 0, sizeof(WAVEHEADER) );
  146.     SetWLE( &p_sys->waveheader.Format, 1 ); /*WAVE_FORMAT_PCM*/
  147.     SetWLE( &p_sys->waveheader.BitsPerSample, 16);
  148.     p_sys->waveheader.MainChunkID = VLC_FOURCC('R', 'I', 'F', 'F');
  149.     p_sys->waveheader.Length = 0;                     /* we just don't know */
  150.     p_sys->waveheader.ChunkTypeID = VLC_FOURCC('W', 'A', 'V', 'E');
  151.     p_sys->waveheader.SubChunkID = VLC_FOURCC('f', 'm', 't', ' ');
  152.     SetDWLE( &p_sys->waveheader.SubChunkLength, 16);
  153.     SetWLE( &p_sys->waveheader.Modus, 2);
  154.     SetDWLE( &p_sys->waveheader.SampleFreq, 44100);
  155.     SetWLE( &p_sys->waveheader.BytesPerSample,
  156.             2 /*Modus*/ * 16 /*BitsPerSample*/ / 8 );
  157.     SetDWLE( &p_sys->waveheader.BytesPerSec,
  158.              2*16/8 /*BytesPerSample*/ * 44100 /*SampleFreq*/ );
  159.     p_sys->waveheader.DataChunkID = VLC_FOURCC('d', 'a', 't', 'a');
  160.     p_sys->waveheader.DataLength = 0;                 /* we just don't know */
  161.     /* PTS delay */
  162.     var_Create( p_access, "cdda-caching", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
  163.     return VLC_SUCCESS;
  164. error:
  165.     ioctl_Close( VLC_OBJECT(p_access), p_sys->vcddev );
  166.     free( p_sys );
  167.     return VLC_EGENERIC;
  168. }
  169. /*****************************************************************************
  170.  * Close: closes cdda
  171.  *****************************************************************************/
  172. static void Close( vlc_object_t *p_this )
  173. {
  174.     access_t     *p_access = (access_t *)p_this;
  175.     access_sys_t *p_sys = p_access->p_sys;
  176.     int          i;
  177.     for( i = 0; i < p_sys->i_titles; i++ )
  178.     {
  179.         vlc_input_title_Delete( p_sys->title[i] );
  180.     }
  181.     ioctl_Close( p_this, p_sys->vcddev );
  182.     free( p_sys );
  183. }
  184. /*****************************************************************************
  185.  * Block: read data (CDDA_DATA_ONCE)
  186.  *****************************************************************************/
  187. static block_t *Block( access_t *p_access )
  188. {
  189.     access_sys_t *p_sys = p_access->p_sys;
  190.     int i_blocks = CDDA_BLOCKS_ONCE;
  191.     block_t *p_block;
  192.     /* Check end of file */
  193.     if( p_access->info.b_eof ) return NULL;
  194.     if( !p_sys->b_header )
  195.     {
  196.         /* Return only the header */
  197.         p_block = block_New( p_access, sizeof( WAVEHEADER ) );
  198.         memcpy( p_block->p_buffer, &p_sys->waveheader, sizeof(WAVEHEADER) );
  199.         p_sys->b_header = VLC_TRUE;
  200.         return p_block;
  201.     }
  202.     /* Check end of title */
  203.     while( p_sys->i_sector >= p_sys->p_sectors[p_access->info.i_title + 1] )
  204.     {
  205.         if( p_access->info.i_title + 1 >= p_sys->i_titles )
  206.         {
  207.             p_access->info.b_eof = VLC_TRUE;
  208.             return NULL;
  209.         }
  210.         p_access->info.i_update |= INPUT_UPDATE_TITLE | INPUT_UPDATE_SIZE;
  211.         p_access->info.i_title++;
  212.         p_access->info.i_size = p_sys->title[p_access->info.i_title]->i_size;
  213.         p_access->info.i_pos = 0;
  214.     }
  215.     /* Don't read after the end of a title */
  216.     if( p_sys->i_sector + i_blocks >=
  217.         p_sys->p_sectors[p_access->info.i_title + 1] )
  218.     {
  219.         i_blocks = p_sys->p_sectors[p_access->info.i_title + 1 ] -
  220.                    p_sys->i_sector;
  221.     }
  222.     /* Do the actual reading */
  223.     if( !( p_block = block_New( p_access, i_blocks * CDDA_DATA_SIZE ) ) )
  224.     {
  225.         msg_Err( p_access, "cannot get a new block of size: %i",
  226.                  i_blocks * CDDA_DATA_SIZE );
  227.         return NULL;
  228.     }
  229.     if( ioctl_ReadSectors( VLC_OBJECT(p_access), p_sys->vcddev,
  230.             p_sys->i_sector, p_block->p_buffer, i_blocks, CDDA_TYPE ) < 0 )
  231.     {
  232.         msg_Err( p_access, "cannot read sector %i", p_sys->i_sector );
  233.         block_Release( p_block );
  234.         /* Try to skip one sector (in case of bad sectors) */
  235.         p_sys->i_sector++;
  236.         p_access->info.i_pos += CDDA_DATA_SIZE;
  237.         return NULL;
  238.     }
  239.     /* Update a few values */
  240.     p_sys->i_sector += i_blocks;
  241.     p_access->info.i_pos += p_block->i_buffer;
  242.     return p_block;
  243. }
  244. /****************************************************************************
  245.  * Seek
  246.  ****************************************************************************/
  247. static int Seek( access_t *p_access, int64_t i_pos )
  248. {
  249.     access_sys_t *p_sys = p_access->p_sys;
  250.     /* Next sector to read */
  251.     p_sys->i_sector = p_sys->p_sectors[p_access->info.i_title] +
  252.         i_pos / CDDA_DATA_SIZE;
  253.     p_access->info.i_pos = i_pos;
  254.     return VLC_SUCCESS;
  255. }
  256. /*****************************************************************************
  257.  * Control:
  258.  *****************************************************************************/
  259. static int Control( access_t *p_access, int i_query, va_list args )
  260. {
  261.     access_sys_t *p_sys = p_access->p_sys;
  262.     vlc_bool_t   *pb_bool;
  263.     int          *pi_int;
  264.     int64_t      *pi_64;
  265.     input_title_t ***ppp_title;
  266.     int i;
  267.     switch( i_query )
  268.     {
  269.         /* */
  270.         case ACCESS_CAN_SEEK:
  271.         case ACCESS_CAN_FASTSEEK:
  272.         case ACCESS_CAN_PAUSE:
  273.         case ACCESS_CAN_CONTROL_PACE:
  274.             pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
  275.             *pb_bool = VLC_TRUE;
  276.             break;
  277.         /* */
  278.         case ACCESS_GET_MTU:
  279.             pi_int = (int*)va_arg( args, int * );
  280.             *pi_int = CDDA_DATA_ONCE;
  281.             break;
  282.         case ACCESS_GET_PTS_DELAY:
  283.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  284.             *pi_64 = var_GetInteger( p_access, "cdda-caching" ) * 1000;
  285.             break;
  286.         /* */
  287.         case ACCESS_SET_PAUSE_STATE:
  288.             break;
  289.         case ACCESS_GET_TITLE_INFO:
  290.             ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
  291.             pi_int    = (int*)va_arg( args, int* );
  292.     *((int*)va_arg( args, int* )) = 1; /* Title offset */
  293.             /* Duplicate title infos */
  294.             *pi_int = p_sys->i_titles;
  295.             *ppp_title = malloc(sizeof( input_title_t **) * p_sys->i_titles );
  296.             for( i = 0; i < p_sys->i_titles; i++ )
  297.             {
  298.                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->title[i] );
  299.             }
  300.             break;
  301.         case ACCESS_SET_TITLE:
  302.             i = (int)va_arg( args, int );
  303.             if( i != p_access->info.i_title )
  304.             {
  305.                 /* Update info */
  306.                 p_access->info.i_update |=
  307.                     INPUT_UPDATE_TITLE|INPUT_UPDATE_SIZE;
  308.                 p_access->info.i_title = i;
  309.                 p_access->info.i_size = p_sys->title[i]->i_size;
  310.                 p_access->info.i_pos = 0;
  311.                 /* Next sector to read */
  312.                 p_sys->i_sector = p_sys->p_sectors[i];
  313.             }
  314.             break;
  315.         case ACCESS_SET_SEEKPOINT:
  316.         case ACCESS_SET_PRIVATE_ID_STATE:
  317.             return VLC_EGENERIC;
  318.         default:
  319.             msg_Warn( p_access, "unimplemented query in control" );
  320.             return VLC_EGENERIC;
  321.     }
  322.     return VLC_SUCCESS;
  323. }