diff options
author | Marton Balint <cus@passwd.hu> | 2017-03-15 01:00:57 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2017-03-22 00:43:06 +0100 |
commit | 51546504133cbea93284aeda3e30e531fe2c1633 (patch) | |
tree | f5d4ba6a67135583951a909a63d8e7af4ee85eaa /libavcodec | |
parent | 7bfbb7229971a5220fed07bb931e6ff1030a319a (diff) | |
download | ffmpeg-51546504133cbea93284aeda3e30e531fe2c1633.tar.gz |
avcodec/avcodec.h: clarify decoupled decode/encode API docs
Reviewed-by: wm4 <nfxjfg@googlemail.com>
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index f9ebd14a7e..3e3c37278a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -142,8 +142,9 @@ * * 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(): |