diff options
author | Martin Storsjö <martin@martin.st> | 2012-03-19 12:17:47 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-03-19 14:27:43 +0200 |
commit | 17934c1824af1b46339d230e02da1896a5ffa8ce (patch) | |
tree | a9a461b19df3737b43efc844798f0f3632d6e8e3 /libavformat/rtsp.c | |
parent | bb39bd195a7dec3e8c7eb9ae4294f2fd0f548ed9 (diff) | |
download | ffmpeg-17934c1824af1b46339d230e02da1896a5ffa8ce.tar.gz |
cosmetics: Align some AVInput/OutputFormat declarations
Also add missing trailing commas.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index ecc1cbafef..56deed3b3a 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1929,7 +1929,7 @@ AVInputFormat ff_sdp_demuxer = { .read_header = sdp_read_header, .read_packet = ff_rtsp_fetch_packet, .read_close = sdp_read_close, - .priv_class = &sdp_demuxer_class + .priv_class = &sdp_demuxer_class, }; #endif /* CONFIG_SDP_DEMUXER */ @@ -2047,7 +2047,7 @@ AVInputFormat ff_rtp_demuxer = { .read_header = rtp_read_header, .read_packet = ff_rtsp_fetch_packet, .read_close = sdp_read_close, - .flags = AVFMT_NOFILE, - .priv_class = &rtp_demuxer_class + .flags = AVFMT_NOFILE, + .priv_class = &rtp_demuxer_class, }; #endif /* CONFIG_RTP_DEMUXER */ |