avcodec: clarify the CODEC_CAP_DELAY note in avcodec_decode_video2()
authorJustin Ruggles <justin.ruggles@gmail.com>
Sun, 25 Sep 2011 21:09:03 +0000 (17:09 -0400)
committerJustin Ruggles <justin.ruggles@gmail.com>
Thu, 20 Oct 2011 17:30:08 +0000 (13:30 -0400)
libavcodec/avcodec.h

index 2e735f9..623da5e 100644 (file)
@@ -3865,8 +3865,9 @@ int avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,
  *
  * In practice, avpkt->data should have 4 byte alignment at minimum.
  *
- * @note Some codecs have a delay between input and output, these need to be
- * fed with avpkt->data=NULL, avpkt->size=0 at the end to return the remaining frames.
+ * @note Codecs which have the CODEC_CAP_DELAY capability set have a delay
+ * between input and output, these need to be fed with avpkt->data=NULL,
+ * avpkt->size=0 at the end to return the remaining frames.
  *
  * @param avctx the codec context
  * @param[out] picture The AVFrame in which the decoded video frame will be stored.