Add DV fourcc.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23306 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
corey 2007-05-13 17:51:17 +00:00
parent 1adcbe0375
commit 3bfd50bdd8
1 changed files with 2 additions and 0 deletions

View File

@ -991,6 +991,8 @@ static int vf_open(vf_instance_t *vf, char* args){
mux_v->bih->biCompression = mmioFOURCC('S', 'N', 'O', 'W');
else if (!strcasecmp(lavc_param_vcodec, "flv"))
mux_v->bih->biCompression = mmioFOURCC('F', 'L', 'V', '1');
else if (!strcasecmp(lavc_param_vcodec, "dvvideo"))
mux_v->bih->biCompression = mmioFOURCC('d', 'v', 's', 'd');
else
mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0],
lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */