diff libmpcodecs/ve_raw.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 6ff3379a0862
children 20aca9baf5d8
line wrap: on
line diff
--- a/libmpcodecs/ve_raw.c	Thu Jan 26 00:48:53 2006 +0000
+++ b/libmpcodecs/ve_raw.c	Thu Jan 26 19:32:07 2006 +0000
@@ -117,7 +117,7 @@
 
 static int put_image(struct vf_instance_s *vf, mp_image_t *mpi) {
     mux_v->buffer = mpi->planes[0];
-    muxer_write_chunk(mux_v, mpi->width*mpi->height*mux_v->bih->biBitCount/8, 0x10);
+    muxer_write_chunk(mux_v, mpi->width*mpi->height*mux_v->bih->biBitCount/8, 0x10, MP_NOPTS_VALUE, MP_NOPTS_VALUE);
     return 1;
 }