mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Treat SIPP like xvid, fixed issue1966
Originally committed as revision 23336 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
220f2bd9c5
commit
d3752b15d8
1 changed files with 3 additions and 1 deletions
|
|
@ -428,7 +428,9 @@ retry:
|
|||
if(s->xvid_build==-1 && s->divx_version==-1 && s->lavc_build==-1){
|
||||
if(s->stream_codec_tag == AV_RL32("XVID") ||
|
||||
s->codec_tag == AV_RL32("XVID") || s->codec_tag == AV_RL32("XVIX") ||
|
||||
s->codec_tag == AV_RL32("RMP4"))
|
||||
s->codec_tag == AV_RL32("RMP4") ||
|
||||
s->codec_tag == AV_RL32("SIPP")
|
||||
)
|
||||
s->xvid_build= 0;
|
||||
#if 0
|
||||
if(s->codec_tag == AV_RL32("DIVX") && s->vo_type==0 && s->vol_control_parameters==1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue