diff libmpcodecs/ve_rawrgb.c @ 7368:a894e99c1e51

changing return type of put_image void->int
author arpi
date Tue, 10 Sep 2002 22:18:32 +0000
parents 1e47c2e7aa8e
children 27da710563c2
line wrap: on
line diff
--- a/libmpcodecs/ve_rawrgb.c	Tue Sep 10 22:10:06 2002 +0000
+++ b/libmpcodecs/ve_rawrgb.c	Tue Sep 10 22:18:32 2002 +0000
@@ -46,9 +46,10 @@
     return 0;
 }
 
-static void put_image(struct vf_instance_s* vf, mp_image_t *mpi){
+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);
+    return 1;
 }
 
 //===========================================================================//