summaryrefslogtreecommitdiffstats
path: root/libmpdemux/muxer_rawaudio.c
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-21 22:53:14 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-21 22:53:14 +0000
commit7a8f8317fd501364b3c76156189c2100d338097f (patch)
treecb87cf317d3646b72ff50a0cb45d1a89142fd430 /libmpdemux/muxer_rawaudio.c
parent76b842a3c1afc5385ac9dc060be99fae43121eaa (diff)
downloadmpv-7a8f8317fd501364b3c76156189c2100d338097f.tar.bz2
mpv-7a8f8317fd501364b3c76156189c2100d338097f.tar.xz
buffering in the muxer layer; patch by Corey Hickey (bugfood-ml ad fatooh punctum org) plus small fixes by me
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17024 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/muxer_rawaudio.c')
-rw-r--r--libmpdemux/muxer_rawaudio.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libmpdemux/muxer_rawaudio.c b/libmpdemux/muxer_rawaudio.c
index a9904b6e9a..71bf56628e 100644
--- a/libmpdemux/muxer_rawaudio.c
+++ b/libmpdemux/muxer_rawaudio.c
@@ -51,19 +51,6 @@ static void rawaudiofile_write_chunk(muxer_stream_t *s,size_t len,unsigned int f
// write out the chunk:
if (s->type==MUXER_TYPE_AUDIO)
fwrite(s->buffer,len,1,muxer->file);
-
- // alter counters:
- if(s->h.dwSampleSize){
- // CBR
- s->h.dwLength+=len/s->h.dwSampleSize;
- if(len%s->h.dwSampleSize)
- mp_msg(MSGT_MUXER,MSGL_WARN,MSGTR_WarningLenIsntDivisible);
- } else {
- // VBR
- s->h.dwLength++;
- }
- s->timer=(double)s->h.dwLength*s->h.dwScale/s->h.dwRate;
- s->size+=len;
}
static void rawaudiofile_write_header(muxer_t *muxer){