This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit c9937ff139362e608c81c7190f77a5cb8d808dd3 Author: Marvin Scholz <[email protected]> AuthorDate: Fri Mar 21 04:44:31 2025 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 14:31:19 2026 +0200 doc: mark functions related to AVCodecParameters This makes these functions appear in the AVCodecParameters documentation page, so they are easier to find. --- libavcodec/avcodec.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 6824bfc9a6..780557710b 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2158,6 +2158,8 @@ const AVClass *avcodec_get_subtitle_rect_class(void); * of the corresponding fields in codec. * * @return >= 0 on success, a negative AVERROR code on failure + * + * @relates AVCodecParameters */ int avcodec_parameters_from_context(struct AVCodecParameters *par, const AVCodecContext *codec); @@ -2169,6 +2171,8 @@ int avcodec_parameters_from_context(struct AVCodecParameters *par, * Fields in codec that do not have a counterpart in par are not touched. * * @return >= 0 on success, a negative AVERROR code on failure. + * + * @relates AVCodecParameters */ int avcodec_parameters_to_context(AVCodecContext *codec, const struct AVCodecParameters *par); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
