]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/avcodec.h: clarify decoupled decode/encode API docs
authorMarton Balint <cus@passwd.hu>
Wed, 15 Mar 2017 00:00:57 +0000 (01:00 +0100)
committerMarton Balint <cus@passwd.hu>
Tue, 21 Mar 2017 23:43:06 +0000 (00:43 +0100)
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
libavcodec/avcodec.h

index f9ebd14a7eaa933db831c7698306e73b267a278e..3e3c37278a45f3268158874361df12883d45581a 100644 (file)
  *
  * Not all codecs will follow a rigid and predictable dataflow; the only
  * guarantee is that an AVERROR(EAGAIN) return value on a send/receive call on
- * one end implies that a receive/send call on the other end will succeed. In
- * general, no codec will permit unlimited buffering of input or output.
+ * one end implies that a receive/send call on the other end will succeed, or
+ * at least will not fail with AVERROR(EAGAIN). In general, no codec will
+ * permit unlimited buffering of input or output.
  *
  * This API replaces the following legacy functions:
  * - avcodec_decode_video2() and avcodec_decode_audio4():