diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-23 11:38:24 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-23 15:27:42 +0200 |
commit | c2ff63e3ac82d5ee501e480d4714e982fc45cf8b (patch) | |
tree | 352ec96b66346f7a1595d50b9eaff1a35a3921b3 /libavformat/rtpenc.c | |
parent | 3c0ed7d1a8ccb170c1ce5acacfe5e9c26135541e (diff) | |
download | ffmpeg-c2ff63e3ac82d5ee501e480d4714e982fc45cf8b.tar.gz |
rtpenc: Move the trailing comma into FF_RTP_FLAG_OPTS
This simplifies adding more flags to the macro.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpenc.c')
-rw-r--r-- | libavformat/rtpenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpenc.c b/libavformat/rtpenc.c index a4a6987032..e19541798b 100644 --- a/libavformat/rtpenc.c +++ b/libavformat/rtpenc.c @@ -31,7 +31,7 @@ //#define DEBUG static const AVOption options[] = { - FF_RTP_FLAG_OPTS(RTPMuxContext, flags), + FF_RTP_FLAG_OPTS(RTPMuxContext, flags) { "payload_type", "Specify RTP payload type", offsetof(RTPMuxContext, payload_type), AV_OPT_TYPE_INT, {.dbl = -1 }, -1, 127, AV_OPT_FLAG_ENCODING_PARAM }, { NULL }, }; |