diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-10 12:04:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-11 02:54:10 +0100 |
commit | 98ec828775235b7d3c59cf007d8c75db4cb93de1 (patch) | |
tree | cbb2ed58e3587d08c91d2388e9618611afab02c5 /libavformat | |
parent | 41bb47bf960e52d2dfcfcf1cff475ff39bbeb130 (diff) | |
download | ffmpeg-98ec828775235b7d3c59cf007d8c75db4cb93de1.tar.gz |
Remove final semicolon from some macros
This avoids double semicolons after macro expansion.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 44adbebe1744c68d66d7f811c38270fdcc89665a)
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rdt.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_asf.c | 2 | ||||
-rw-r--r-- | libavformat/rtpdec_qt.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 3428b4d3fe..bb7f278163 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -559,7 +559,7 @@ static RTPDynamicProtocolHandler ff_rdt_ ## n ## _handler = { \ .open = rdt_new_context, \ .close = rdt_free_context, \ .parse_packet = rdt_parse_packet \ -}; +} RDT_HANDLER(live_video, "x-pn-multirate-realvideo-live", AVMEDIA_TYPE_VIDEO); RDT_HANDLER(live_audio, "x-pn-multirate-realaudio-live", AVMEDIA_TYPE_AUDIO); diff --git a/libavformat/rtpdec_asf.c b/libavformat/rtpdec_asf.c index db09f8f3f7..5d52765110 100644 --- a/libavformat/rtpdec_asf.c +++ b/libavformat/rtpdec_asf.c @@ -288,7 +288,7 @@ RTPDynamicProtocolHandler ff_ms_rtp_ ## n ## _handler = { \ .open = asfrtp_new_context, \ .close = asfrtp_free_context, \ .parse_packet = asfrtp_parse_packet, \ -}; +} RTP_ASF_HANDLER(asf_pfv, "x-asf-pf", AVMEDIA_TYPE_VIDEO); RTP_ASF_HANDLER(asf_pfa, "x-asf-pf", AVMEDIA_TYPE_AUDIO); diff --git a/libavformat/rtpdec_qt.c b/libavformat/rtpdec_qt.c index 28460a7ad9..a1853ef52f 100644 --- a/libavformat/rtpdec_qt.c +++ b/libavformat/rtpdec_qt.c @@ -246,7 +246,7 @@ RTPDynamicProtocolHandler ff_ ## m ## _rtp_ ## n ## _handler = { \ .open = qt_rtp_new, \ .close = qt_rtp_free, \ .parse_packet = qt_rtp_parse_packet, \ -}; +} RTP_QT_HANDLER(qt, vid, "X-QT", AVMEDIA_TYPE_VIDEO); RTP_QT_HANDLER(qt, aud, "X-QT", AVMEDIA_TYPE_AUDIO); |