Commit beaa5b2f authored by michaelni's avatar michaelni

fixing wmv1 slice decoding


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1031 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent df92fb78
......@@ -693,7 +693,7 @@ static inline int msmpeg4_pred_dc(MpegEncContext * s, int n,
b = dc_val[ - 1 - wrap];
c = dc_val[ - wrap];
if(s->first_slice_line && (n&2)==0){
if(s->first_slice_line && (n&2)==0 && s->msmpeg4_version!=4){
b=c=1024;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment