[FFmpeg-cvslog] rtspenc: Add an AVClass for setting muxer specific options

Martin Storsjö git at videolan.org
Sat Jun 11 04:16:54 CEST 2011


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sat May 21 15:03:35 2011 +0300| [6cf09bb7ef5a52b9d9b589067d94a5c80f9fe848] | committer: Martin Storsjö

rtspenc: Add an AVClass for setting muxer specific options

Signed-off-by: Martin Storsjö <martin at martin.st>

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

 libavformat/rtspenc.c |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c
index c1fc97c..b7fa330 100644
--- a/libavformat/rtspenc.c
+++ b/libavformat/rtspenc.c
@@ -33,9 +33,21 @@
 #include "libavutil/intreadwrite.h"
 #include "libavutil/avstring.h"
 #include "url.h"
+#include "libavutil/opt.h"
 
 #define SDP_MAX_SIZE 16384
 
+static const AVOption options[] = {
+    { NULL },
+};
+
+static const AVClass rtsp_muxer_class = {
+    .class_name = "RTSP muxer",
+    .item_name  = av_default_item_name,
+    .option     = options,
+    .version    = LIBAVUTIL_VERSION_INT,
+};
+
 int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
 {
     RTSPState *rt = s->priv_data;
@@ -238,5 +250,6 @@ AVOutputFormat ff_rtsp_muxer = {
     rtsp_write_packet,
     rtsp_write_close,
     .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER,
+    .priv_class = &rtsp_muxer_class,
 };
 



More information about the ffmpeg-cvslog mailing list