[FFmpeg-cvslog] lavf/mpegenc: extend options definition

Stefano Sabatini git at videolan.org
Wed Jan 24 01:21:45 EET 2024


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Jan 20 17:54:37 2024 +0100| [02e4598f8f40d0ac43d73fa79f02caecf79cbac1] | committer: Stefano Sabatini

lavf/mpegenc: extend options definition

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=02e4598f8f40d0ac43d73fa79f02caecf79cbac1
---

 libavformat/mpegenc.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c
index 12d9fb33ec..14caf9e162 100644
--- a/libavformat/mpegenc.c
+++ b/libavformat/mpegenc.c
@@ -1291,8 +1291,8 @@ static void mpeg_mux_deinit(AVFormatContext *ctx)
 #define OFFSET(x) offsetof(MpegMuxContext, x)
 #define E AV_OPT_FLAG_ENCODING_PARAM
 static const AVOption options[] = {
-    { "muxrate", NULL,                                          OFFSET(user_mux_rate), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, ((1<<22) - 1) * (8 * 50), E },
-    { "preload", "Initial demux-decode delay in microseconds.", OFFSET(preload),  AV_OPT_TYPE_INT, { .i64 = 500000 }, 0, INT_MAX, E },
+    { "muxrate", "mux rate as bits/s", OFFSET(user_mux_rate), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, ((1<<22) - 1) * (8 * 50), E },
+    { "preload", "initial demux-decode delay in microseconds", OFFSET(preload),  AV_OPT_TYPE_INT, { .i64 = 500000 }, 0, INT_MAX, E },
     { NULL },
 };
 



More information about the ffmpeg-cvslog mailing list