This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/huffyuvdec: use the correct height field
Fixes Ticket3395 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer
12 years ago
parent
61d59703c9
commit
469de4f583
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/huffyuvdec.c
+ 1
- 1
libavcodec/huffyuvdec.c
View File
@@ -267,7 +267,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
memset(s->vlc, 0, 4 * sizeof(VLC));
s->interlaced =
s
->height > 288;
s->interlaced =
avctx
->height > 288;
s->bgr32 = 1;
Write
Preview
Loading…
Cancel
Save