mirror of
https://github.com/mpv-player/mpv
synced 2025-01-18 21:31:13 +00:00
FFV1
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10265 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
080311d08f
commit
ca774d892b
@ -265,6 +265,14 @@ videocodec ffhuffyuv
|
||||
out YUY2,422P,YV12
|
||||
out BGR32,BGR24
|
||||
|
||||
videocodec ffv1
|
||||
info "FFV1"
|
||||
status working
|
||||
fourcc FFV1
|
||||
driver ffmpeg
|
||||
dll ffv1
|
||||
out 411P,444P,422P,YV12,I420,IYUV,YVU9
|
||||
|
||||
videocodec ffasv1
|
||||
info "ASUS V1"
|
||||
status working
|
||||
|
@ -693,6 +693,8 @@ static int vf_open(vf_instance_t *vf, char* args){
|
||||
mux_v->bih->biCompression = mmioFOURCC('H', 'F', 'Y', 'U');
|
||||
else if (!strcasecmp(lavc_param_vcodec, "asv1"))
|
||||
mux_v->bih->biCompression = mmioFOURCC('A', 'S', 'V', '1');
|
||||
else if (!strcasecmp(lavc_param_vcodec, "ffv1"))
|
||||
mux_v->bih->biCompression = mmioFOURCC('F', 'F', '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