diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-01-10 15:13:33 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-01-29 09:14:13 +0100 |
commit | e5e29eda5aae8eb5d1d32f647c68c0543db63217 (patch) | |
tree | fd3ece05fc88b6390fa868c4c29f8a0e2de10f4d /libavcodec/avcodec.h | |
parent | 1f9828bb8cf2bcaec95b534b22f30366a56bc92a (diff) | |
download | ffmpeg-e5e29eda5aae8eb5d1d32f647c68c0543db63217.tar.gz |
lavc/avcodec: improve AV_CODEC_FLAG_RECON_FRAME doxy
Do not break a sentence on a period after "i.e.".
Link to the definition of AV_CODEC_CAP_ENCODER_RECON_FRAME.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index ad6377e8d8..4874b443f9 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -232,13 +232,13 @@ typedef struct RcOverride{ */ #define AV_CODEC_FLAG_DROPCHANGED (1 << 5) /** - * Request the encoder to output reconstructed frames, i.e. frames that would be - * produced by decoding the encoded bistream. These frames may be retrieved by - * calling avcodec_receive_frame() immediately after a successful call to + * Request the encoder to output reconstructed frames, i.e.\ frames that would + * be produced by decoding the encoded bistream. These frames may be retrieved + * by calling avcodec_receive_frame() immediately after a successful call to * avcodec_receive_packet(). * * Should only be used with encoders flagged with the - * AV_CODEC_CAP_ENCODER_RECON_FRAME capability. + * @ref AV_CODEC_CAP_ENCODER_RECON_FRAME capability. */ #define AV_CODEC_FLAG_RECON_FRAME (1 << 6) /** |