mirror of
https://github.com/mpv-player/mpv
synced 2025-03-21 18:57:35 +00:00
Add proper flv fourcc
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20435 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
54e93af1c0
commit
88c688595e
@ -980,6 +980,8 @@ static int vf_open(vf_instance_t *vf, char* args){
|
||||
mux_v->bih->biCompression = mmioFOURCC('F', 'F', 'V', '1');
|
||||
else if (!strcasecmp(lavc_param_vcodec, "snow"))
|
||||
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
|
||||
mux_v->bih->biCompression = mmioFOURCC(lavc_param_vcodec[0],
|
||||
lavc_param_vcodec[1], lavc_param_vcodec[2], lavc_param_vcodec[3]); /* FIXME!!! */
|
||||
|
Loading…
Reference in New Issue
Block a user