diff options
author | Linjie Fu <linjie.fu@intel.com> | 2020-02-28 00:13:28 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-02-28 19:40:05 +0100 |
commit | 220c7dadc4988e4ef52e93b098e6f02283f7852a (patch) | |
tree | b1b3cf9a9f164ceb10e23b36690875a9a62b47bc | |
parent | 7b79c59fba445d932aec6e553176821b187125ba (diff) | |
download | ffmpeg-220c7dadc4988e4ef52e93b098e6f02283f7852a.tar.gz |
lavc/avcodec.h: fix missing line breaks in API documentation
"In both cases.." and "Repeat this call until.." would be better to
be in a separate line.
http://ffmpeg.org/doxygen/trunk/group__lavc__encdec.html
Signed-off-by: Linjie Fu <linjie.fu@intel.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 894a9e5565..5a0fc3405c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -92,6 +92,7 @@ * compressed data in an AVPacket. * - For encoding, call avcodec_send_frame() to give the encoder an AVFrame * containing uncompressed audio or video. + * * In both cases, it is recommended that AVPackets and AVFrames are * refcounted, or libavcodec might have to copy the input data. (libavformat * always returns refcounted AVPackets, and av_frame_get_buffer() allocates @@ -102,6 +103,7 @@ * an AVFrame containing uncompressed audio or video data. * - For encoding, call avcodec_receive_packet(). On success, it will return * an AVPacket with a compressed frame. + * * Repeat this call until it returns AVERROR(EAGAIN) or an error. The * AVERROR(EAGAIN) return value means that new input data is required to * return new output. In this case, continue with sending input. For each |