This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 78bfcf003b libavformat: Fix the docs for av_mime_codec_str and 
ff_make_codec_str
78bfcf003b is described below

commit 78bfcf003b21ed5cf002f0a6b66a0babfc6cfc06
Author:     Martin Storsjö <[email protected]>
AuthorDate: Fri Dec 19 20:07:19 2025 +0200
Commit:     Martin Storsjö <[email protected]>
CommitDate: Mon Dec 29 12:05:14 2025 +0000

    libavformat: Fix the docs for av_mime_codec_str and ff_make_codec_str
    
    The doxygen comments were missed as these functions were updated
    during review; they don't take separate pointer/length parameters
    but use an AVBPrint struct now instead.
    
    Also clarify that ff_make_codec_str doesn't log if the logctx
    parameter is NULL.
---
 libavformat/avformat.h | 3 +--
 libavformat/internal.h | 6 +++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index cee845b308..bd34132e00 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -2898,8 +2898,7 @@ struct AVBPrint;
  * @param frame_rate an AVRational for the frame rate, for deciding the
  *                   right profile for video codecs. Pass an invalid
  *                   AVRational (1/0) to indicate that it is unknown.
- * @param str the output string buffer
- * @param size the size of the string pointed to by str
+ * @param out the AVBPrint to write the output to
  * @return <0 on error
  */
 int av_mime_codec_str(const AVCodecParameters *par,
diff --git a/libavformat/internal.h b/libavformat/internal.h
index d32a3376cc..245f6eeb86 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -664,12 +664,12 @@ int ff_parse_opts_from_query_string(void *obj, const char 
*str, int allow_unkown
 /**
  * Make a RFC 4281/6381 like string describing a codec.
  *
- * @param logctx a context for potential log messages
+ * @param logctx a context for potential log messages; if NULL, nothing is
+ *               logged
  * @param par pointer to an AVCodecParameters struct describing the codec
  * @param frame_rate an optional pointer to AVRational for the frame rate,
  *                   for deciding the right profile for video codecs
- * @param str the output string buffer
- * @param size the size of the string pointed to by str
+ * @param out the AVBPrint to write the output to
  * @return <0 on error
  */
 int ff_make_codec_str(void *logctx, const AVCodecParameters *par,

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to