1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec: Updated comment for sub param

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Anshul Maheshwari 2014-07-02 22:07:59 +05:30 committed by Michael Niedermayer
parent 7d1898ebcc
commit 43d70a776d

View File

@ -4086,8 +4086,8 @@ int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,
* marked with CODEC_CAP_DELAY, then no subtitles will be returned. * marked with CODEC_CAP_DELAY, then no subtitles will be returned.
* *
* @param avctx the codec context * @param avctx the codec context
* @param[out] sub The AVSubtitle in which the decoded subtitle will be stored, must be * @param[out] sub The Preallocated AVSubtitle in which the decoded subtitle will be stored,
freed with avsubtitle_free if *got_sub_ptr is set. * must be freed with avsubtitle_free if *got_sub_ptr is set.
* @param[in,out] got_sub_ptr Zero if no subtitle could be decompressed, otherwise, it is nonzero. * @param[in,out] got_sub_ptr Zero if no subtitle could be decompressed, otherwise, it is nonzero.
* @param[in] avpkt The input AVPacket containing the input buffer. * @param[in] avpkt The input AVPacket containing the input buffer.
*/ */