[Mplayer-cvslog] CVS: main/libmpdemux stheader.h,1.33,1.34
Arpi of Ize
arpi at mplayerhq.hu
Sun Oct 6 00:55:48 CEST 2002
- Previous message: [Mplayer-cvslog] CVS: main cfg-common.h,1.61,1.62 cfg-mplayer.h,1.168,1.169 mencoder.c,1.171,1.172 mplayer.c,1.585,1.586
- Next message: [Mplayer-cvslog] CVS: main cfg-mplayer.h,1.169,1.170 mplayer.c,1.586,1.587
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var/tmp.root/cvs-serv25169/libmpdemux
Modified Files:
stheader.h
Log Message:
aufio filter layer (libaf) integration to libmpcodecs, mplayer and mencoder
Index: stheader.h
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/stheader.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- stheader.h 22 Sep 2002 00:43:14 -0000 1.33
+++ stheader.h 5 Oct 2002 22:55:45 -0000 1.34
@@ -55,15 +55,21 @@
int o_bps; // == samplerate*samplesize*channels (uncompr. bytes/sec)
int i_bps; // == bitrate (compressed bytes/sec)
// in buffers:
- int audio_in_minsize;
+ int audio_in_minsize; // max. compressed packet size (== min. in buffer size)
char* a_in_buffer;
int a_in_buffer_len;
int a_in_buffer_size;
- // out buffers:
- int audio_out_minsize;
+ // decoder buffers:
+ int audio_out_minsize; // max. uncompressed packet size (==min. out buffsize)
char* a_buffer;
int a_buffer_len;
int a_buffer_size;
+ // output buffers:
+ char* a_out_buffer;
+ int a_out_buffer_len;
+ int a_out_buffer_size;
+// void* audio_out; // the audio_out handle, used for this audio stream
+ void* afilter; // the audio filter stream
// win32-compatible codec parameters:
AVIStreamHeader audio;
WAVEFORMATEX* wf;
- Previous message: [Mplayer-cvslog] CVS: main cfg-common.h,1.61,1.62 cfg-mplayer.h,1.168,1.169 mencoder.c,1.171,1.172 mplayer.c,1.585,1.586
- Next message: [Mplayer-cvslog] CVS: main cfg-mplayer.h,1.169,1.170 mplayer.c,1.586,1.587
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list