cosmetics: Align some AVInput/OutputFormat declarations

Also add missing trailing commas.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2012-03-19 12:17:47 +02:00
parent bb39bd195a
commit 17934c1824
3 changed files with 9 additions and 9 deletions

View File

@ -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 */
@ -2048,6 +2048,6 @@ AVInputFormat ff_rtp_demuxer = {
.read_packet = ff_rtsp_fetch_packet,
.read_close = sdp_read_close,
.flags = AVFMT_NOFILE,
.priv_class = &rtp_demuxer_class
.priv_class = &rtp_demuxer_class,
};
#endif /* CONFIG_RTP_DEMUXER */