diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-04-04 09:58:29 +0200 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-04-04 09:58:29 +0200 |
commit | 8c5c6871ba677fee59808fa9231e7f39a1cd75f0 (patch) | |
tree | 6e66e10483324e45ff8cd16cdc2d9ccc0c08069a /libavcodec | |
parent | 3fce174d4f08f76a82ad6d4a481463cfb8611dfe (diff) | |
download | ffmpeg-8c5c6871ba677fee59808fa9231e7f39a1cd75f0.tar.gz |
lavc: add AV_ prefix to CODEC_CAP_DELAY in doxy
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 377aa53094..4b7c3f1e33 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -4902,13 +4902,13 @@ int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture, * and reusing a get_buffer written for video codecs would probably perform badly * due to a potentially very different allocation pattern. * - * Some decoders (those marked with CODEC_CAP_DELAY) have a delay between input + * Some decoders (those marked with AV_CODEC_CAP_DELAY) have a delay between input * and output. This means that for some packets they will not immediately * produce decoded output and need to be flushed at the end of decoding to get * all the decoded data. Flushing is done by calling this function with packets * with avpkt->data set to NULL and avpkt->size set to 0 until it stops * returning subtitles. It is safe to flush even those decoders that are not - * marked with CODEC_CAP_DELAY, then no subtitles will be returned. + * marked with AV_CODEC_CAP_DELAY, then no subtitles will be returned. * * @note The AVCodecContext MUST have been opened with @ref avcodec_open2() * before packets may be fed to the decoder. |