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
SVQ3 uses the JPEG variant of YUV 4:2:0.
Fixes issue256 Originally committed as revision 14257 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer
17 years ago
parent
9e4cd83347
commit
7a9dba3cd6
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
libavcodec/h264.c
+ 4
- 0
libavcodec/h264.c
View File
@@ -2200,6 +2200,10 @@ static av_cold int decode_init(AVCodecContext *avctx){
// s->decode_mb= ff_h263_decode_mb;
s->quarter_sample = 1;
s->low_delay= 1;
if(avctx->codec_id == CODEC_ID_SVQ3)
avctx->pix_fmt= PIX_FMT_YUVJ420P;
else
avctx->pix_fmt= PIX_FMT_YUV420P;
decode_init_vlc();
Write
Preview
Loading…
Cancel
Save