summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-03-19 12:17:47 +0200
committerMartin Storsjö <martin@martin.st>2012-03-19 14:27:43 +0200
commit17934c1824af1b46339d230e02da1896a5ffa8ce (patch)
treea9a461b19df3737b43efc844798f0f3632d6e8e3 /libavformat/rtsp.c
parentbb39bd195a7dec3e8c7eb9ae4294f2fd0f548ed9 (diff)
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.c6
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 */