⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdda.c

📁 VLC Player Source Code
💻 C
📖 第 1 页 / 共 2 页
字号:
    if( p_access->info.b_eof ) return NULL;    if( !p_sys->b_header )    {        /* Return only the header */        p_block = block_New( p_access, sizeof( WAVEHEADER ) );        memcpy( p_block->p_buffer, &p_sys->waveheader, sizeof(WAVEHEADER) );        p_sys->b_header = true;        return p_block;    }    if( p_sys->i_sector >= p_sys->i_last_sector )    {        p_access->info.b_eof = true;        return NULL;    }    /* Don't read too far */    if( p_sys->i_sector + i_blocks >= p_sys->i_last_sector )        i_blocks = p_sys->i_last_sector - p_sys->i_sector;    /* Do the actual reading */    if( !( p_block = block_New( p_access, i_blocks * CDDA_DATA_SIZE ) ) )    {        msg_Err( p_access, "cannot get a new block of size: %i",                 i_blocks * CDDA_DATA_SIZE );        return NULL;    }    if( ioctl_ReadSectors( VLC_OBJECT(p_access), p_sys->vcddev,            p_sys->i_sector, p_block->p_buffer, i_blocks, CDDA_TYPE ) < 0 )    {        msg_Err( p_access, "cannot read sector %i", p_sys->i_sector );        block_Release( p_block );        /* Try to skip one sector (in case of bad sectors) */        p_sys->i_sector++;        p_access->info.i_pos += CDDA_DATA_SIZE;        return NULL;    }    /* Update a few values */    p_sys->i_sector += i_blocks;    p_access->info.i_pos += p_block->i_buffer;    return p_block;}/**************************************************************************** * Seek ****************************************************************************/static int Seek( access_t *p_access, int64_t i_pos ){    access_sys_t *p_sys = p_access->p_sys;    /* Next sector to read */    p_sys->i_sector = p_sys->i_first_sector + i_pos / CDDA_DATA_SIZE;    p_access->info.i_pos = i_pos;    return VLC_SUCCESS;}/***************************************************************************** * Control: *****************************************************************************/static int Control( access_t *p_access, int i_query, va_list args ){    bool   *pb_bool;    int          *pi_int;    int64_t      *pi_64;    switch( i_query )    {        case ACCESS_CAN_SEEK:        case ACCESS_CAN_FASTSEEK:        case ACCESS_CAN_PAUSE:        case ACCESS_CAN_CONTROL_PACE:            pb_bool = (bool*)va_arg( args, bool* );            *pb_bool = true;            break;        case ACCESS_GET_MTU:            pi_int = (int*)va_arg( args, int * );            *pi_int = CDDA_DATA_ONCE;            break;        case ACCESS_GET_PTS_DELAY:            pi_64 = (int64_t*)va_arg( args, int64_t * );            *pi_64 = var_GetInteger( p_access, "cdda-caching" ) * 1000;            break;        case ACCESS_SET_PAUSE_STATE:        case ACCESS_GET_TITLE_INFO:        case ACCESS_SET_TITLE:        case ACCESS_GET_META:        case ACCESS_SET_SEEKPOINT:        case ACCESS_SET_PRIVATE_ID_STATE:        case ACCESS_GET_CONTENT_TYPE:            return VLC_EGENERIC;        default:            msg_Warn( p_access, "unimplemented query in control" );            return VLC_EGENERIC;    }    return VLC_SUCCESS;}static int GetTracks( access_t *p_access,                      playlist_t *p_playlist, playlist_item_t *p_parent ){    access_sys_t *p_sys = p_access->p_sys;    int i, i_titles;    input_item_t *p_input_item;    playlist_item_t *p_item_in_category;    char *psz_name;    i_titles = ioctl_GetTracksMap( VLC_OBJECT(p_access),                                   p_sys->vcddev, &p_sys->p_sectors );    if( i_titles < 0 )    {        msg_Err( p_access, "unable to count tracks" );        return VLC_EGENERIC;;    }    else if( i_titles <= 0 )    {        msg_Err( p_access, "no audio tracks found" );        return VLC_EGENERIC;    }    p_item_in_category = playlist_ItemToNode( p_playlist, p_parent, pl_Unlocked );    playlist_ItemSetName( p_parent, "Audio CD" );    var_SetInteger( p_playlist, "item-change", p_parent->p_input->i_id );#ifdef HAVE_LIBCDDB    GetCDDBInfo( p_access, i_titles, p_sys->p_sectors );    if( p_sys->p_disc )    {        if( cddb_disc_get_title( p_sys->p_disc ) )        {            const char *psz_name = cddb_disc_get_title( p_sys->p_disc );            playlist_ItemSetName( p_parent, psz_name );            var_SetInteger( p_playlist, "item-change",                            p_parent->p_input->i_id );        }    }#endif    /* Build title table */    for( i = 0; i < i_titles; i++ )    {        msg_Dbg( p_access, "track[%d] start=%d", i, p_sys->p_sectors[i] );        char *psz_uri, *psz_opt, *psz_first, *psz_last;        if( asprintf( &psz_uri, "cdda://%s", p_access->psz_path ? p_access->psz_path : "" ) == -1 )            psz_uri = NULL;        if( asprintf( &psz_opt, "cdda-track=%i", i+1 ) == -1 )            psz_opt = NULL;        if( asprintf( &psz_first, "cdda-first-sector=%i",p_sys->p_sectors[i] ) == -1 )            psz_first = NULL;//        if( i != i_titles -1 )//        {            if( asprintf( &psz_last, "cdda-last-sector=%i", p_sys->p_sectors[i+1] ) == -1 )                psz_last = NULL;//        }//        else//        {//            if( asprintf( &psz_last, "cdda-last-sector=%i", 1242 /* FIXME */) == -1 )//                psz_last = NULL;//        }        /* Define a "default name" */        if( asprintf( &psz_name, _("Audio CD - Track %i"), (i+1) ) == -1 )            psz_name = NULL;        /* Create playlist items */        p_input_item = input_item_NewWithType( VLC_OBJECT( p_playlist ),                                              psz_uri, psz_name, 0, NULL, -1,                                              ITEM_TYPE_DISC );        input_item_AddOption( p_input_item, psz_first );        input_item_AddOption( p_input_item, psz_last );        input_item_AddOption( p_input_item, psz_opt );#ifdef HAVE_LIBCDDB        /* If we have CDDB info, change the name */        if( p_sys->p_disc )        {            cddb_track_t *t = cddb_disc_get_track( p_sys->p_disc, i );            if( t!= NULL )            {                if( cddb_track_get_title( t )  != NULL )                {                    free( p_input_item->psz_name );                    p_input_item->psz_name = strdup( cddb_track_get_title( t ) );                    input_item_SetTitle( p_input_item, cddb_track_get_title( t ) );                }                if( cddb_track_get_artist( t ) != NULL )                {                    input_item_SetArtist( p_input_item, cddb_track_get_artist( t ) );                }            }        }#endif        int i_ret = playlist_BothAddInput( p_playlist, p_input_item,                               p_item_in_category,                               PLAYLIST_APPEND, PLAYLIST_END, NULL, NULL,                               pl_Unlocked );        vlc_gc_decref( p_input_item );        free( psz_uri ); free( psz_opt ); free( psz_name );        free( psz_first ); free( psz_last );        if( i_ret != VLC_SUCCESS )            return VLC_EGENERIC;    }    return VLC_SUCCESS;}#ifdef HAVE_LIBCDDBstatic void GetCDDBInfo( access_t *p_access, int i_titles, int *p_sectors ){    int i, i_matches;    int64_t  i_length = 0, i_size = 0;    cddb_conn_t  *p_cddb = cddb_new();    if( !p_cddb )    {        msg_Warn( p_access, "unable to use CDDB" );        goto cddb_destroy;    }    char* psz_tmp = config_GetPsz( p_access, "cddb-server" );    cddb_set_email_address( p_cddb, "vlc@videolan.org" );    cddb_set_server_name( p_cddb, psz_tmp );    cddb_set_server_port( p_cddb, config_GetInt( p_access, "cddb-port" ) );    free( psz_tmp );    /// \todo    cddb_cache_disable( p_cddb );//    cddb_cache_set_dir( p_cddb,//                     config_GetPsz( p_access,//                                    MODULE_STRING "-cddb-cachedir") );    cddb_set_timeout( p_cddb, 10 );    /// \todo    cddb_http_disable( p_cddb);    p_access->p_sys->p_disc = cddb_disc_new();    if(! p_access->p_sys->p_disc )    {        msg_Err( p_access, "unable to create CDDB disc structure." );        goto cddb_end;    }    for(i = 0; i < i_titles ; i++ )    {        cddb_track_t *t = cddb_track_new();        cddb_track_set_frame_offset(t, p_sectors[i] );        cddb_disc_add_track( p_access->p_sys->p_disc, t );        i_size = ( p_sectors[i+1] - p_sectors[i] ) *                   (int64_t)CDDA_DATA_SIZE;        i_length += INT64_C(1000000) * i_size / 44100 / 4  ;    }    cddb_disc_set_length( p_access->p_sys->p_disc, (int)(i_length/1000000) );    if (!cddb_disc_calc_discid(p_access->p_sys->p_disc ))    {        msg_Err( p_access, "CDDB disc ID calculation failed" );        goto cddb_destroy;    }    i_matches = cddb_query( p_cddb, p_access->p_sys->p_disc);    if (i_matches > 0)    {        if (i_matches > 1)             msg_Warn( p_access, "found %d matches in CDDB. Using first one.",                                 i_matches);        cddb_read( p_cddb, p_access->p_sys->p_disc );    }    else        msg_Warn( p_access, "CDDB error: %s", cddb_error_str(errno));cddb_destroy:    cddb_destroy( p_cddb);cddb_end: ;}#endif /*HAVE_LIBCDDB*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -