vcd.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:16k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vcd.c : VCD input module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2004 the VideoLAN team
  5.  * $Id: 96e400c3c01983b075ac5b855e4b704146d20e0f $
  6.  *
  7.  * Author: Johan Bilien <jobi@via.ecp.fr>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #ifdef HAVE_CONFIG_H
  27. # include "config.h"
  28. #endif
  29. #include <vlc_common.h>
  30. #include <vlc_plugin.h>
  31. #include <vlc_input.h>
  32. #include <vlc_access.h>
  33. #include <vlc_charset.h>
  34. #include "cdrom.h"
  35. /*****************************************************************************
  36.  * Module descriptior
  37.  *****************************************************************************/
  38. static int  Open ( vlc_object_t * );
  39. static void Close( vlc_object_t * );
  40. #define CACHING_TEXT N_("Caching value in ms")
  41. #define CACHING_LONGTEXT N_( 
  42.     "Caching value for VCDs. This " 
  43.     "value should be set in milliseconds." )
  44. vlc_module_begin ()
  45.     set_shortname( N_("VCD"))
  46.     set_description( N_("VCD input") )
  47.     set_capability( "access", 60 )
  48.     set_callbacks( Open, Close )
  49.     set_category( CAT_INPUT )
  50.     set_subcategory( SUBCAT_INPUT_ACCESS )
  51.     add_usage_hint( N_("[vcd:][device][@[title][,[chapter]]]") )
  52.     add_integer( "vcd-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
  53.                  CACHING_LONGTEXT, true )
  54.     add_shortcut( "vcd" )
  55.     add_shortcut( "svcd" )
  56. vlc_module_end ()
  57. /*****************************************************************************
  58.  * Local prototypes
  59.  *****************************************************************************/
  60. /* how many blocks VCDRead will read in each loop */
  61. #define VCD_BLOCKS_ONCE 20
  62. #define VCD_DATA_ONCE   (VCD_BLOCKS_ONCE * VCD_DATA_SIZE)
  63. struct access_sys_t
  64. {
  65.     vcddev_t    *vcddev;                            /* vcd device descriptor */
  66.     /* Title infos */
  67.     int           i_titles;
  68.     input_title_t *title[99];            /* No more that 99 track in a vcd ? */
  69.     int         i_sector;                                  /* Current Sector */
  70.     int         *p_sectors;                                 /* Track sectors */
  71. };
  72. static block_t *Block( access_t * );
  73. static int      Seek( access_t *, int64_t );
  74. static int      Control( access_t *, int, va_list );
  75. static int      EntryPoints( access_t * );
  76. /*****************************************************************************
  77.  * VCDOpen: open vcd
  78.  *****************************************************************************/
  79. static int Open( vlc_object_t *p_this )
  80. {
  81.     access_t     *p_access = (access_t *)p_this;
  82.     access_sys_t *p_sys;
  83.     char *psz_dup = ToLocaleDup( p_access->psz_path );
  84.     char *psz;
  85.     int i_title = 0;
  86.     int i_chapter = 0;
  87.     int i;
  88.     vcddev_t *vcddev;
  89.     /* Command line: vcd://[dev_path][@title[,chapter]] */
  90.     if( ( psz = strchr( psz_dup, '@' ) ) )
  91.     {
  92.         *psz++ = '';
  93.         i_title = strtol( psz, &psz, 0 );
  94.         if( *psz )
  95.             i_chapter = strtol( psz+1, &psz, 0 );
  96.     }
  97.     if( *psz_dup == '' )
  98.     {
  99.         free( psz_dup );
  100.         /* Only when selected */
  101.         if( strcmp( p_access->psz_access, "vcd" ) &&
  102.             strcmp( p_access->psz_access, "svcd" ) )
  103.             return VLC_EGENERIC;
  104.         psz_dup = var_CreateGetString( p_access, "vcd" );
  105.         if( *psz_dup == '' )
  106.         {
  107.             free( psz_dup );
  108.             return VLC_EGENERIC;
  109.         }
  110.     }
  111. #ifdef WIN32
  112.     if( psz_dup[0] && psz_dup[1] == ':' &&
  113.         psz_dup[2] == '\' && psz_dup[3] == '' ) psz_dup[2] = '';
  114. #endif
  115.     /* Open VCD */
  116.     if( !(vcddev = ioctl_Open( p_this, psz_dup )) )
  117.     {
  118.         free( psz_dup );
  119.         return VLC_EGENERIC;
  120.     }
  121.     free( psz_dup );
  122.     /* Set up p_access */
  123.     p_access->pf_read = NULL;
  124.     p_access->pf_block = Block;
  125.     p_access->pf_control = Control;
  126.     p_access->pf_seek = Seek;
  127.     p_access->info.i_update = 0;
  128.     p_access->info.i_size = 0;
  129.     p_access->info.i_pos = 0;
  130.     p_access->info.b_eof = false;
  131.     p_access->info.i_title = 0;
  132.     p_access->info.i_seekpoint = 0;
  133.     p_access->p_sys = p_sys = calloc( 1, sizeof( access_sys_t ) );
  134.     if( !p_sys )
  135.         goto error;
  136.     p_sys->vcddev = vcddev;
  137.     /* We read the Table Of Content information */
  138.     p_sys->i_titles = ioctl_GetTracksMap( VLC_OBJECT(p_access),
  139.                                           p_sys->vcddev, &p_sys->p_sectors );
  140.     if( p_sys->i_titles < 0 )
  141.     {
  142.         msg_Err( p_access, "unable to count tracks" );
  143.         goto error;
  144.     }
  145.     else if( p_sys->i_titles <= 1 )
  146.     {
  147.         msg_Err( p_access, "no movie tracks found" );
  148.         goto error;
  149.     }
  150.     /* The first title isn't usable */
  151.     p_sys->i_titles--;
  152.     /* Build title table */
  153.     for( i = 0; i < p_sys->i_titles; i++ )
  154.     {
  155.         input_title_t *t = p_sys->title[i] = vlc_input_title_New();
  156.         msg_Dbg( p_access, "title[%d] start=%d", i, p_sys->p_sectors[1+i] );
  157.         msg_Dbg( p_access, "title[%d] end=%d", i, p_sys->p_sectors[i+2] );
  158.         t->i_size = ( p_sys->p_sectors[i+2] - p_sys->p_sectors[i+1] ) *
  159.                     (int64_t)VCD_DATA_SIZE;
  160.     }
  161.     /* Map entry points into chapters */
  162.     if( EntryPoints( p_access ) )
  163.     {
  164.         msg_Warn( p_access, "could not read entry points, will not use them" );
  165.     }
  166.     /* Starting title/chapter and sector */
  167.     if( i_title >= p_sys->i_titles )
  168.         i_title = 0;
  169.     if( i_chapter >= p_sys->title[i_title]->i_seekpoint )
  170.         i_chapter = 0;
  171.     p_sys->i_sector = p_sys->p_sectors[1+i_title];
  172.     if( i_chapter > 0 )
  173.     {
  174.         p_sys->i_sector +=
  175.             ( p_sys->title[i_title]->seekpoint[i_chapter]->i_byte_offset /
  176.               VCD_DATA_SIZE );
  177.     }
  178.     p_access->info.i_title = i_title;
  179.     p_access->info.i_seekpoint = i_chapter;
  180.     p_access->info.i_size = p_sys->title[i_title]->i_size;
  181.     p_access->info.i_pos = ( p_sys->i_sector - p_sys->p_sectors[1+i_title] ) *
  182.         VCD_DATA_SIZE;
  183.     free( p_access->psz_demux );
  184.     p_access->psz_demux = strdup( "ps" );
  185.     return VLC_SUCCESS;
  186. error:
  187.     ioctl_Close( VLC_OBJECT(p_access), p_sys->vcddev );
  188.     free( p_sys );
  189.     return VLC_EGENERIC;
  190. }
  191. /*****************************************************************************
  192.  * Close: closes vcd
  193.  *****************************************************************************/
  194. static void Close( vlc_object_t *p_this )
  195. {
  196.     access_t     *p_access = (access_t *)p_this;
  197.     access_sys_t *p_sys = p_access->p_sys;
  198.     ioctl_Close( p_this, p_sys->vcddev );
  199.     free( p_sys );
  200. }
  201. /*****************************************************************************
  202.  * Control:
  203.  *****************************************************************************/
  204. static int Control( access_t *p_access, int i_query, va_list args )
  205. {
  206.     access_sys_t *p_sys = p_access->p_sys;
  207.     bool   *pb_bool;
  208.     int          *pi_int;
  209.     int64_t      *pi_64;
  210.     input_title_t ***ppp_title;
  211.     int i;
  212.     switch( i_query )
  213.     {
  214.         /* */
  215.         case ACCESS_CAN_SEEK:
  216.         case ACCESS_CAN_FASTSEEK:
  217.         case ACCESS_CAN_PAUSE:
  218.         case ACCESS_CAN_CONTROL_PACE:
  219.             pb_bool = (bool*)va_arg( args, bool* );
  220.             *pb_bool = true;
  221.             break;
  222.         /* */
  223.         case ACCESS_GET_PTS_DELAY:
  224.             pi_64 = (int64_t*)va_arg( args, int64_t * );
  225.             *pi_64 = var_GetInteger( p_access, "vcd-caching" ) * 1000;
  226.             break;
  227.         /* */
  228.         case ACCESS_SET_PAUSE_STATE:
  229.             break;
  230.         case ACCESS_GET_TITLE_INFO:
  231.             ppp_title = (input_title_t***)va_arg( args, input_title_t*** );
  232.             pi_int    = (int*)va_arg( args, int* );
  233.             /* Duplicate title infos */
  234.             *pi_int = p_sys->i_titles;
  235.             *ppp_title = malloc( sizeof(input_title_t **) * p_sys->i_titles );
  236.             for( i = 0; i < p_sys->i_titles; i++ )
  237.             {
  238.                 (*ppp_title)[i] = vlc_input_title_Duplicate( p_sys->title[i] );
  239.             }
  240.             break;
  241.         case ACCESS_SET_TITLE:
  242.             i = (int)va_arg( args, int );
  243.             if( i != p_access->info.i_title )
  244.             {
  245.                 /* Update info */
  246.                 p_access->info.i_update |=
  247.                   INPUT_UPDATE_TITLE|INPUT_UPDATE_SEEKPOINT|INPUT_UPDATE_SIZE;
  248.                 p_access->info.i_title = i;
  249.                 p_access->info.i_seekpoint = 0;
  250.                 p_access->info.i_size = p_sys->title[i]->i_size;
  251.                 p_access->info.i_pos  = 0;
  252.                 /* Next sector to read */
  253.                 p_sys->i_sector = p_sys->p_sectors[1+i];
  254.             }
  255.             break;
  256.         case ACCESS_SET_SEEKPOINT:
  257.         {
  258.             input_title_t *t = p_sys->title[p_access->info.i_title];
  259.             i = (int)va_arg( args, int );
  260.             if( t->i_seekpoint > 0 )
  261.             {
  262.                 p_access->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  263.                 p_access->info.i_seekpoint = i;
  264.                 p_sys->i_sector = p_sys->p_sectors[1+p_access->info.i_title] +
  265.                     t->seekpoint[i]->i_byte_offset / VCD_DATA_SIZE;
  266.                 p_access->info.i_pos = (int64_t)(p_sys->i_sector -
  267.                     p_sys->p_sectors[1+p_access->info.i_title]) *VCD_DATA_SIZE;
  268.             }
  269.             return VLC_SUCCESS;
  270.         }
  271.         case ACCESS_SET_PRIVATE_ID_STATE:
  272.         case ACCESS_GET_CONTENT_TYPE:
  273.             return VLC_EGENERIC;
  274.         default:
  275.             msg_Warn( p_access, "unimplemented query in control" );
  276.             return VLC_EGENERIC;
  277.     }
  278.     return VLC_SUCCESS;
  279. }
  280. /*****************************************************************************
  281.  * Block:
  282.  *****************************************************************************/
  283. static block_t *Block( access_t *p_access )
  284. {
  285.     access_sys_t *p_sys = p_access->p_sys;
  286.     int i_blocks = VCD_BLOCKS_ONCE;
  287.     block_t *p_block;
  288.     int i_read;
  289.     /* Check end of file */
  290.     if( p_access->info.b_eof ) return NULL;
  291.     /* Check end of title */
  292.     while( p_sys->i_sector >= p_sys->p_sectors[p_access->info.i_title + 2] )
  293.     {
  294.         if( p_access->info.i_title + 2 >= p_sys->i_titles )
  295.         {
  296.             p_access->info.b_eof = true;
  297.             return NULL;
  298.         }
  299.         p_access->info.i_update |=
  300.             INPUT_UPDATE_TITLE | INPUT_UPDATE_SEEKPOINT | INPUT_UPDATE_SIZE;
  301.         p_access->info.i_title++;
  302.         p_access->info.i_seekpoint = 0;
  303.         p_access->info.i_size =
  304.             p_sys->title[p_access->info.i_title]->i_size;
  305.         p_access->info.i_pos = 0;
  306.     }
  307.     /* Don't read after the end of a title */
  308.     if( p_sys->i_sector + i_blocks >=
  309.         p_sys->p_sectors[p_access->info.i_title + 2] )
  310.     {
  311.         i_blocks = p_sys->p_sectors[p_access->info.i_title + 2 ] -
  312.                    p_sys->i_sector;
  313.     }
  314.     /* Do the actual reading */
  315.     if( !( p_block = block_New( p_access, i_blocks * VCD_DATA_SIZE ) ) )
  316.     {
  317.         msg_Err( p_access, "cannot get a new block of size: %i",
  318.                  i_blocks * VCD_DATA_SIZE );
  319.         return NULL;
  320.     }
  321.     if( ioctl_ReadSectors( VLC_OBJECT(p_access), p_sys->vcddev,
  322.             p_sys->i_sector, p_block->p_buffer, i_blocks, VCD_TYPE ) < 0 )
  323.     {
  324.         msg_Err( p_access, "cannot read sector %i", p_sys->i_sector );
  325.         block_Release( p_block );
  326.         /* Try to skip one sector (in case of bad sectors) */
  327.         p_sys->i_sector++;
  328.         p_access->info.i_pos += VCD_DATA_SIZE;
  329.         return NULL;
  330.     }
  331.     /* Update seekpoints */
  332.     for( i_read = 0; i_read < i_blocks; i_read++ )
  333.     {
  334.         input_title_t *t = p_sys->title[p_access->info.i_title];
  335.         if( t->i_seekpoint > 0 &&
  336.             p_access->info.i_seekpoint + 1 < t->i_seekpoint &&
  337.             p_access->info.i_pos + i_read * VCD_DATA_SIZE >=
  338.             t->seekpoint[p_access->info.i_seekpoint+1]->i_byte_offset )
  339.         {
  340.             msg_Dbg( p_access, "seekpoint change" );
  341.             p_access->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  342.             p_access->info.i_seekpoint++;
  343.         }
  344.     }
  345.     /* Update a few values */
  346.     p_sys->i_sector += i_blocks;
  347.     p_access->info.i_pos += p_block->i_buffer;
  348.     return p_block;
  349. }
  350. /*****************************************************************************
  351.  * Seek:
  352.  *****************************************************************************/
  353. static int Seek( access_t *p_access, int64_t i_pos )
  354. {
  355.     access_sys_t *p_sys = p_access->p_sys;
  356.     input_title_t *t = p_sys->title[p_access->info.i_title];
  357.     int i_seekpoint;
  358.     /* Next sector to read */
  359.     p_access->info.i_pos = i_pos;
  360.     p_sys->i_sector = i_pos / VCD_DATA_SIZE +
  361.         p_sys->p_sectors[p_access->info.i_title + 1];
  362.     /* Update current seekpoint */
  363.     for( i_seekpoint = 0; i_seekpoint < t->i_seekpoint; i_seekpoint++ )
  364.     {
  365.         if( i_seekpoint + 1 >= t->i_seekpoint ) break;
  366.         if( i_pos < t->seekpoint[i_seekpoint + 1]->i_byte_offset ) break;
  367.     }
  368.     if( i_seekpoint != p_access->info.i_seekpoint )
  369.     {
  370.         msg_Dbg( p_access, "seekpoint change" );
  371.         p_access->info.i_update |= INPUT_UPDATE_SEEKPOINT;
  372.         p_access->info.i_seekpoint = i_seekpoint;
  373.     }
  374.     /* Reset eof */
  375.     p_access->info.b_eof = false;
  376.     return VLC_SUCCESS;
  377. }
  378. /*****************************************************************************
  379.  * EntryPoints: Reads the information about the entry points on the disc.
  380.  *****************************************************************************/
  381. static int EntryPoints( access_t *p_access )
  382. {
  383.     access_sys_t *p_sys = p_access->p_sys;
  384.     uint8_t      sector[VCD_DATA_SIZE];
  385.     entries_sect_t entries;
  386.     int i_nb, i;
  387.     /* Read the entry point sector */
  388.     if( ioctl_ReadSectors( VLC_OBJECT(p_access), p_sys->vcddev,
  389.         VCD_ENTRIES_SECTOR, sector, 1, VCD_TYPE ) < 0 )
  390.     {
  391.         msg_Err( p_access, "could not read entry points sector" );
  392.         return VLC_EGENERIC;
  393.     }
  394.     memcpy( &entries, sector, CD_SECTOR_SIZE );
  395.     i_nb = GetWBE( &entries.i_entries_nb );
  396.     if( i_nb > 500 )
  397.     {
  398.         msg_Err( p_access, "invalid entry points number" );
  399.         return VLC_EGENERIC;
  400.     }
  401.     if( strncmp( entries.psz_id, "ENTRYVCD", sizeof( entries.psz_id ) ) &&
  402.         strncmp( entries.psz_id, "ENTRYSVD", sizeof( entries.psz_id ) ) )
  403.     {
  404.         msg_Err( p_access, "unrecognized entry points format" );
  405.         return VLC_EGENERIC;
  406.     }
  407.     for( i = 0; i < i_nb; i++ )
  408.     {
  409.         const int i_title = BCD_TO_BIN(entries.entry[i].i_track) - 2;
  410.         const int i_sector =
  411.             (MSF_TO_LBA2( BCD_TO_BIN( entries.entry[i].msf.minute ),
  412.                           BCD_TO_BIN( entries.entry[i].msf.second ),
  413.                           BCD_TO_BIN( entries.entry[i].msf.frame  ) ));
  414.         seekpoint_t *s;
  415.         if( i_title < 0 ) continue;   /* Should not occur */
  416.         if( i_title >= p_sys->i_titles ) continue;
  417.         msg_Dbg( p_access, "Entry[%d] title=%d sector=%d",
  418.                  i, i_title, i_sector );
  419.         s = vlc_seekpoint_New();
  420.         s->i_byte_offset = (i_sector - p_sys->p_sectors[i_title+1]) *
  421.             VCD_DATA_SIZE;
  422.         TAB_APPEND( p_sys->title[i_title]->i_seekpoint,
  423.                     p_sys->title[i_title]->seekpoint, s );
  424.     }
  425.     return VLC_SUCCESS;
  426. }