[FFmpeg-cvslog] lavc: add AV_ prefix to CODEC_CAP_DELAY in doxy

Clément Bœsch git at videolan.org
Tue Apr 4 10:57:14 EEST 2017


ffmpeg | branch: master | Clément Bœsch <cboesch at gopro.com> | Tue Apr  4 09:58:29 2017 +0200| [8c5c6871ba677fee59808fa9231e7f39a1cd75f0] | committer: Clément Bœsch

lavc: add AV_ prefix to CODEC_CAP_DELAY in doxy

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8c5c6871ba677fee59808fa9231e7f39a1cd75f0
---

 libavcodec/avcodec.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 377aa53..4b7c3f1 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.



More information about the ffmpeg-cvslog mailing list