aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-03-24 10:07:44 +0100
committerAnton Khirnov <anton@khirnov.net>2023-03-28 13:00:42 +0200
commitb62632e2c93bc77aa5f1a4de8f2ad40980ef8d65 (patch)
tree92187093c72d488489db5ef1e1f1e5b1d8641740 /libavcodec/avcodec.h
parent83eb52323c5a2664a9802cb8fc3fc2784c733dfb (diff)
downloadffmpeg-b62632e2c93bc77aa5f1a4de8f2ad40980ef8d65.tar.gz
lavc: turn mentions of AV_CODEC_FLAG_RECON_FRAME in doxy into links
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 7a6eb4c0e2..18ca0e2494 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2665,7 +2665,7 @@ int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt);
/**
* Return decoded output data from a decoder or encoder (when the
- * AV_CODEC_FLAG_RECON_FRAME flag is used).
+ * @ref AV_CODEC_FLAG_RECON_FRAME flag is used).
*
* @param avctx codec context
* @param frame This will be set to a reference-counted video or audio
@@ -2679,7 +2679,7 @@ int avcodec_send_packet(AVCodecContext *avctx, const AVPacket *avpkt);
* @retval AVERROR_EOF the codec has been fully flushed, and there will be
* no more output frames
* @retval AVERROR(EINVAL) codec not opened, or it is an encoder without the
- * AV_CODEC_FLAG_RECON_FRAME flag enabled
+ * @ref AV_CODEC_FLAG_RECON_FRAME flag enabled
* @retval AVERROR_INPUT_CHANGED current decoded frame has changed parameters with
* respect to first decoded frame. Applicable when flag
* AV_CODEC_FLAG_DROPCHANGED is set.