diff options
author | Mans Rullgard <mans@mansr.com> | 2011-02-10 12:04:25 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-10 21:45:17 +0000 |
commit | 44adbebe1744c68d66d7f811c38270fdcc89665a (patch) | |
tree | f54d8c51945df57d392f1cd6a6b577103d440b46 /libavformat/rtpdec_qt.c | |
parent | df211c3ab73b36208ac4511a9cd7feb817f551fa (diff) | |
download | ffmpeg-44adbebe1744c68d66d7f811c38270fdcc89665a.tar.gz |
Remove final semicolon from some macros
This avoids double semicolons after macro expansion.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/rtpdec_qt.c')
-rw-r--r-- | libavformat/rtpdec_qt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |