diff options
author | Martin Storsjö <martin@martin.st> | 2010-11-29 16:04:45 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-11-29 16:04:45 +0000 |
commit | 4da71f18f68877b57806308b7d79ffbb5f076272 (patch) | |
tree | 3874997d4f43d0a8f7f14312e7b566302e5f16b5 /libavformat/rtpdec_qt.c | |
parent | fe70a95e1d2e0acc40ed94b9f65f37816f8001f5 (diff) | |
download | ffmpeg-4da71f18f68877b57806308b7d79ffbb5f076272.tar.gz |
rtpdec: Remove useless NULL initializations when using designated initializers
Originally committed as revision 25844 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtpdec_qt.c')
-rw-r--r-- | libavformat/rtpdec_qt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/rtpdec_qt.c b/libavformat/rtpdec_qt.c index 4d8437e947..5cca076079 100644 --- a/libavformat/rtpdec_qt.c +++ b/libavformat/rtpdec_qt.c @@ -243,7 +243,6 @@ RTPDynamicProtocolHandler ff_ ## m ## _rtp_ ## n ## _handler = { \ .enc_name = s, \ .codec_type = t, \ .codec_id = CODEC_ID_NONE, \ - .parse_sdp_a_line = NULL, \ .open = qt_rtp_new, \ .close = qt_rtp_free, \ .parse_packet = qt_rtp_parse_packet, \ |