[FFmpeg-devel] [PATCH 3/7] avcodec/tdsc: return the packet size instead of 0

Michael Niedermayer michael at niedermayer.cc
Thu Dec 15 22:21:09 EET 2016


Most decoders return the amount of data used.
This is more consistent

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
 libavcodec/tdsc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/tdsc.c b/libavcodec/tdsc.c
index d1265a006d..8460568d7d 100644
--- a/libavcodec/tdsc.c
+++ b/libavcodec/tdsc.c
@@ -609,7 +609,7 @@ static int tdsc_decode_frame(AVCodecContext *avctx, void *data,
     }
     *got_frame = 1;
 
-    return 0;
+    return avpkt->size;
 }
 
 AVCodec ff_tdsc_decoder = {
-- 
2.11.0



More information about the ffmpeg-devel mailing list