diff libmpdemux/muxer_mpeg.c @ 17487:fa17424b4c7b

change muxer_write_chunk() so that pts/dts _could_ be passed from encoder to muxer
author michael
date Thu, 26 Jan 2006 19:32:07 +0000
parents 934380353fd6
children f71e678e6216
line wrap: on
line diff
--- a/libmpdemux/muxer_mpeg.c	Thu Jan 26 00:48:53 2006 +0000
+++ b/libmpdemux/muxer_mpeg.c	Thu Jan 26 19:32:07 2006 +0000
@@ -2349,7 +2349,7 @@
 
 
 
-static void mpegfile_write_chunk(muxer_stream_t *s,size_t len,unsigned int flags){
+static void mpegfile_write_chunk(muxer_stream_t *s,size_t len,unsigned int flags, double dts_arg, double pts_arg){
   size_t ptr=0, sz = 0;
   uint64_t pts, tmp;
   muxer_t *muxer = s->muxer;