]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtspenc.c
Replace PATCHWELCOME by relevant error codes.
[ffmpeg] / libavformat / rtspenc.c
index 5196bf4fcd961959036000ab072513bf5dc64df3..b54ae28eb86f19673fb34bf2c64a0ea86b647eee 100644 (file)
 #include "libavutil/intreadwrite.h"
 #include "libavutil/avstring.h"
 #include "url.h"
-#include "libavutil/opt.h"
-#include "rtpenc.h"
 
 #define SDP_MAX_SIZE 16384
 
-static const AVOption options[] = {
-    FF_RTP_FLAG_OPTS(RTSPState, rtp_muxer_flags),
-    { NULL },
-};
-
 static const AVClass rtsp_muxer_class = {
     .class_name = "RTSP muxer",
     .item_name  = av_default_item_name,
-    .option     = options,
+    .option     = ff_rtsp_options,
     .version    = LIBAVUTIL_VERSION_INT,
 };