diff libmpcodecs/ve_rawrgb.c @ 9014:c671e9adbe22

Cleanup of the muxer API, func parameters muxer & muxer_f eliminated. patch by Andriy N. Gritsenko <andrej@lucky.net>
author arpi
date Sun, 19 Jan 2003 01:48:52 +0000
parents 27da710563c2
children
line wrap: on
line diff
--- a/libmpcodecs/ve_rawrgb.c	Sun Jan 19 01:25:35 2003 +0000
+++ b/libmpcodecs/ve_rawrgb.c	Sun Jan 19 01:48:52 2003 +0000
@@ -16,8 +16,6 @@
 #include "mp_image.h"
 #include "vf.h"
 
-extern void mencoder_write_chunk(muxer_stream_t *s,int len,unsigned int flags);
-
 //===========================================================================//
 
 struct vf_priv_s {
@@ -48,7 +46,7 @@
 
 static int put_image(struct vf_instance_s* vf, mp_image_t *mpi){
     mux_v->buffer=mpi->planes[0];
-    mencoder_write_chunk(mux_v, mpi->width*mpi->height*3, 0x10);
+    muxer_write_chunk(mux_v, mpi->width*mpi->height*3, 0x10);
     return 1;
 }