diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 18:26:36 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2001-11-07 18:26:36 +0000 |
commit | 2a291e4ea46b1eb479d5e0fdfc909193e638ed54 (patch) | |
tree | ea54ee9ac1428f6ba76fffee327a33c9e8001c77 /src/xine-engine | |
parent | e5572eadacca3f2ace9b542ccad1c696c96ae78f (diff) | |
download | xine-lib-2a291e4ea46b1eb479d5e0fdfc909193e638ed54.tar.gz xine-lib-2a291e4ea46b1eb479d5e0fdfc909193e638ed54.tar.bz2 |
buf type cleanup (1st part)
CVS patchset: 987
CVS date: 2001/11/07 18:26:36
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/Makefile.am | 2 | ||||
-rw-r--r-- | src/xine-engine/buffer.h | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/xine-engine/Makefile.am b/src/xine-engine/Makefile.am index d91dfd54b..ad67530f2 100644 --- a/src/xine-engine/Makefile.am +++ b/src/xine-engine/Makefile.am @@ -8,7 +8,7 @@ CFLAGS = @GLOBAL_CFLAGS@ @THREAD_CFLAGS@ lib_LTLIBRARIES = libxine.la libxine_la_SOURCES = xine.c metronom.c configfile.c buffer.c \ - load_plugins.c video_decoder.c \ + load_plugins.c video_decoder.c buffer_types.c \ audio_decoder.c video_out.c audio_out.c resample.c events.c lrb.c libxine_la_LIBADD = $(THREAD_LIBS) $(DYNAMIC_LD_LIBS) -lm diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index dd47d1c74..edee1c32c 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.20 2001/11/06 21:46:05 miguelfreitas Exp $ + * $Id: buffer.h,v 1.21 2001/11/07 18:26:36 miguelfreitas Exp $ * * * contents: @@ -192,6 +192,11 @@ struct fifo_buffer_s fifo_buffer_t *fifo_buffer_new (int num_buffers, uint32_t buf_size); + +/* provide BUF_VIDEO_xxx given the fourcc */ +uint32_t fourcc_to_buf_video( void * fourcc ); +char * buf_video_name( uint32_t buf_type ); + #ifdef __cplusplus } #endif |