diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 19:06:15 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 19:06:15 +0000 |
commit | c053feafaf72f6dc4b6e159c0bd206820e839b7f (patch) | |
tree | 4067d752ab094892d32c63c1c6d7a169f150f432 /src/xine-engine/buffer.h | |
parent | b9863e2de7c47a70764f16eb9c00f0bea8a6a602 (diff) | |
download | xine-lib-c053feafaf72f6dc4b6e159c0bd206820e839b7f.tar.gz xine-lib-c053feafaf72f6dc4b6e159c0bd206820e839b7f.tar.bz2 |
buf types cleanup (audio stuff)
CVS patchset: 989
CVS date: 2001/11/07 19:06:15
Diffstat (limited to 'src/xine-engine/buffer.h')
-rw-r--r-- | src/xine-engine/buffer.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index edee1c32c..f47b691b4 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer.h,v 1.21 2001/11/07 18:26:36 miguelfreitas Exp $ + * $Id: buffer.h,v 1.22 2001/11/07 19:06:15 miguelfreitas Exp $ * * * contents: @@ -70,7 +70,7 @@ extern "C" { #define BUF_CONTROL_AUDIO_CHANNEL 0x01050000 #define BUF_CONTROL_SPU_CHANNEL 0x01060000 -/* video buffer types: */ +/* video buffer types: (please keep in sync with buffer_types.c) */ #define BUF_VIDEO_BASE 0x02000000 #define BUF_VIDEO_MPEG 0x02000000 @@ -95,7 +95,7 @@ extern "C" { #define BUF_VIDEO_WMV7 0x02130000 #define BUF_VIDEO_WMV8 0x02140000 -/* audio buffer types: */ +/* audio buffer types: (please keep in sync with buffer_types.c) */ #define BUF_AUDIO_BASE 0x03000000 #define BUF_AUDIO_A52 0x03000000 @@ -193,10 +193,18 @@ struct fifo_buffer_s fifo_buffer_t *fifo_buffer_new (int num_buffers, uint32_t buf_size); -/* provide BUF_VIDEO_xxx given the fourcc */ +/* return BUF_VIDEO_xxx given the fourcc */ uint32_t fourcc_to_buf_video( void * fourcc ); + +/* return codec name given BUF_VIDEO_xxx */ char * buf_video_name( uint32_t buf_type ); +/* return BUF_VIDEO_xxx given the formattag */ +uint32_t formattag_to_buf_audio( uint16_t formattag ); + +/* return codec name given BUF_VIDEO_xxx */ +char * buf_audio_name( uint32_t buf_type ); + #ifdef __cplusplus } #endif |