diff options
author | Andriy Gelman <andriy.gelman@gmail.com> | 2020-03-05 00:02:27 -0500 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-03-18 00:58:07 -0300 |
commit | 1e3d4fa0fb6d98cb55a8e721021be58185aa7c25 (patch) | |
tree | 50146abf96947b04b4a6cd2720c54ca89529cebe | |
parent | 1a5e9ae4d8e5ee34c983f16a280c9a262a3fbf8d (diff) | |
download | ffmpeg-1e3d4fa0fb6d98cb55a8e721021be58185aa7c25.tar.gz |
avcodec/avcodec: Fix typos
Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6e03cb5902..78c483c25c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -5047,7 +5047,7 @@ int avcodec_receive_frame(AVCodecContext *avctx, AVFrame *frame); * AVERROR(EINVAL): codec not opened, refcounted_frames not set, it is a * decoder, or requires flush * AVERROR(ENOMEM): failed to add packet to internal queue, or similar - * other errors: legitimate decoding errors + * other errors: legitimate encoding errors */ int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame); @@ -5063,8 +5063,8 @@ int avcodec_send_frame(AVCodecContext *avctx, const AVFrame *frame); * must try to send input * AVERROR_EOF: the encoder has been fully flushed, and there will be * no more output packets - * AVERROR(EINVAL): codec not opened, or it is an encoder - * other errors: legitimate decoding errors + * AVERROR(EINVAL): codec not opened, or it is a decoder + * other errors: legitimate encoding errors */ int avcodec_receive_packet(AVCodecContext *avctx, AVPacket *avpkt); |