summaryrefslogtreecommitdiffstats
path: root/libmpdemux/muxer_rawvideo.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_rawvideo.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_rawvideo.c')
-rw-r--r--libmpdemux/muxer_rawvideo.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libmpdemux/muxer_rawvideo.c b/libmpdemux/muxer_rawvideo.c
index 9ef82c3ab1..00c4436562 100644
--- a/libmpdemux/muxer_rawvideo.c
+++ b/libmpdemux/muxer_rawvideo.c
@@ -57,17 +57,6 @@ static void rawvideofile_write_chunk(muxer_stream_t *s,size_t len,unsigned int f
if (s->type == MUXER_TYPE_VIDEO)
write_rawvideo_chunk(muxer->file,len,s->buffer); /* unsigned char */
- // alter counters:
- if(s->h.dwSampleSize){
- // CBR
- s->h.dwLength+=len/s->h.dwSampleSize;
- if(len%s->h.dwSampleSize) printf("Warning! len isn't divisable by samplesize!\n");
- } else {
- // VBR
- s->h.dwLength++;
- }
- s->timer=(double)s->h.dwLength*s->h.dwScale/s->h.dwRate;
- s->size+=len;
// if((unsigned int)len>s->h.dwSuggestedBufferSize) s->h.dwSuggestedBufferSize=len;
}