git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10700 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2003-08-25 23:19:08 +00:00
parent 1902b5896c
commit 0378af2449
1 changed files with 2 additions and 0 deletions

View File

@ -712,6 +712,8 @@ static int vf_open(vf_instance_t *vf, char* args){
if (!strcasecmp(lavc_param_vcodec, "mpeg1") || !strcasecmp(lavc_param_vcodec, "mpeg1video"))
mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '1');
else if (!strcasecmp(lavc_param_vcodec, "mpeg2") || !strcasecmp(lavc_param_vcodec, "mpeg2video"))
mux_v->bih->biCompression = mmioFOURCC('m', 'p', 'g', '2');
else if (!strcasecmp(lavc_param_vcodec, "h263") || !strcasecmp(lavc_param_vcodec, "h263p"))
mux_v->bih->biCompression = mmioFOURCC('h', '2', '6', '3');
else if (!strcasecmp(lavc_param_vcodec, "rv10"))