git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Disable B-frames decoding until they produce correct picture
[ffmpeg.git]
/
libavcodec
/
vc1.c
diff --git
a/libavcodec/vc1.c
b/libavcodec/vc1.c
index
a485384
..
f5b9a40
100644
(file)
--- a/
libavcodec/vc1.c
+++ b/
libavcodec/vc1.c
@@
-4180,6
+4180,12
@@
static int vc1_decode_frame(AVCodecContext *avctx,
return -1;
}
return -1;
}
+ /* skip B frames as they are not decoded correctly */
+ if(s->pict_type == B_TYPE){
+ av_free(buf2);
+ return buf_size;
+ }
+
// for hurry_up==5
s->current_picture.pict_type= s->pict_type;
s->current_picture.key_frame= s->pict_type == I_TYPE;
// for hurry_up==5
s->current_picture.pict_type= s->pict_type;
s->current_picture.key_frame= s->pict_type == I_TYPE;