cdda.h
来自「VLC媒体播放程序」· C头文件 代码 · 共 88 行
H
88 行
/***************************************************************************** * cdda.h : CD-DA input module header for vlc * using libcdio, libvcd and libvcdinfo ***************************************************************************** * Copyright (C) 2003 VideoLAN * $Id: cdda.h,v 1.6 2004/02/14 17:25:39 gbazin Exp $ * * Author: Rocky Bernstein <rocky@panix.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/#include "../vcdx/cdrom.h"#ifdef HAVE_LIBCDDB#include <cddb/cddb.h>#endif/***************************************************************************** * Debugging *****************************************************************************/#define INPUT_DBG_META 1 /* Meta information */#define INPUT_DBG_EVENT 2 /* Trace keyboard events */#define INPUT_DBG_MRL 4 /* MRL debugging */#define INPUT_DBG_EXT 8 /* Calls from external routines */#define INPUT_DBG_CALL 16 /* all calls */#define INPUT_DBG_LSN 32 /* LSN changes */#define INPUT_DBG_SEEK 64 /* Seeks to set location */#define INPUT_DBG_CDIO 128 /* Debugging from CDIO */#define INPUT_DBG_CDDB 256 /* CDDB debugging */#define INPUT_DEBUG 1#if INPUT_DEBUG#define dbg_print(mask, s, args...) \ if (p_cdda->i_debug & mask) \ msg_Dbg(p_input, "%s: "s, __func__ , ##args)#else#define dbg_print(mask, s, args...)#endif/***************************************************************************** * cdda_data_t: CD audio information *****************************************************************************/typedef struct cdda_data_s{ cddev_t *p_cddev; /* CD device descriptor */ int i_nb_tracks; /* Nb of tracks (titles) */ int i_track; /* Current track */ lsn_t i_sector; /* Current Sector */ lsn_t * p_sectors; /* Track sectors */ vlc_bool_t b_end_of_track; /* If the end of track was reached */ int i_debug; /* Debugging mask */ char * mcn; /* Media Catalog Number */ intf_thread_t *p_intf;#ifdef HAVE_LIBCDDB int i_cddb_enabled; struct { bool have_info; /* True if we have any info */ cddb_disc_t *disc; /* libcdio uses this to get disc info */ int disc_length; /* Length in frames of cd. Used in CDDB lookups */ } cddb;#endif WAVEHEADER waveheader; /* Wave header for the output data */ int i_header_pos;} cdda_data_t;/***************************************************************************** * CDDAPlay: Arrange things so we play the specified track. * VLC_TRUE is returned if there was no error. *****************************************************************************/vlc_bool_t CDDAPlay ( input_thread_t *, int );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?