projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2d5d6a
)
vp9: Return the correct size when decoding a superframe
author
Denis Charmet
<typx@dinauz.org>
Sat, 4 Jun 2016 11:22:42 +0000
(13:22 +0200)
committer
Diego Biurrun
<diego@biurrun.de>
Sun, 5 Jun 2016 14:58:04 +0000
(16:58 +0200)
According to avcodec.h, avcodec_decode_video2 should return the number of
bytes used if a frame was decoded.
The current implementation returns size - used size of all the subframes.
This fixes the VLC's bug https://trac.videolan.org/vlc/ticket/16836.
The superframe is always fully consumed.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
libavcodec/vp9.c
patch
|
blob
|
history
diff --git
a/libavcodec/vp9.c
b/libavcodec/vp9.c
index
45f0771
..
c11e9b8
100644
(file)
--- a/
libavcodec/vp9.c
+++ b/
libavcodec/vp9.c
@@
-1251,7
+1251,7
@@
static int vp9_decode_packet(AVCodecContext *avctx, void *frame,
data += sz;
size -= sz;
}
- return size;
+ return
avpkt->
size;
}
}