From 117e2a30f254820e0fd4e4d5d9fbab757f17590f Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Thu, 24 Nov 2011 01:50:05 +0100 Subject: frame-mt: return consumed packet size in ff_thread_decode_frame This is required to fulfill avcodec_decode_video2() promise to return the number of consumed bytes on success. --- libavcodec/thread.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/thread.h') diff --git a/libavcodec/thread.h b/libavcodec/thread.h index 401c4d25a8..dfd261df1c 100644 --- a/libavcodec/thread.h +++ b/libavcodec/thread.h @@ -42,6 +42,9 @@ void ff_thread_flush(AVCodecContext *avctx); * Submits a new frame to a decoding thread. * Returns the next available frame in picture. *got_picture_ptr * will be 0 if none is available. + * The return value on success is the size of the consumed packet for + * compatiblity with avcodec_decode_video2(). This means the decoder + * has to consume the full packet. * * Parameters are the same as avcodec_decode_video2(). */ -- cgit v1.2.3