From c7fb41804cdb5b230577deb37d5998019adb4123 Mon Sep 17 00:00:00 2001 From: arpi Date: Sun, 10 Feb 2002 12:20:50 +0000 Subject: div3/vfw encoding fixed git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4639 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mencoder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mencoder.c') diff --git a/mencoder.c b/mencoder.c index 2e1d771c72..a46caa274b 100644 --- a/mencoder.c +++ b/mencoder.c @@ -761,12 +761,12 @@ case VCODEC_VFW: vfw_bih->biSize=sizeof(BITMAPINFOHEADER); vfw_bih->biWidth=vo_w; vfw_bih->biHeight=vo_h; - vfw_bih->biPlanes=0; + vfw_bih->biPlanes=1; vfw_bih->biBitCount=24; vfw_bih->biCompression=0; vfw_bih->biSizeImage=vo_w*vo_h*((vfw_bih->biBitCount+7)/8); -// mux_v->bih=vfw_open_encoder("divxc32.dll",vfw_bih); - mux_v->bih=vfw_open_encoder("AvidAVICodec.dll",vfw_bih); +// mux_v->bih=vfw_open_encoder("divxc32.dll",vfw_bih,mmioFOURCC('D', 'I', 'V', '3')); + mux_v->bih=vfw_open_encoder("AvidAVICodec.dll",vfw_bih, 0); break; #else printf("No support for Win32/VfW codecs compiled in\n"); -- cgit v1.2.3