mirror of https://git.ffmpeg.org/ffmpeg.git
cosmetics: Align some AVInput/OutputFormat declarations
Also add missing trailing commas. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
bb39bd195a
commit
17934c1824
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue