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/rtspdec.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/rtspdec.c')
-rw-r--r-- | libavformat/rtspdec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/rtspdec.c b/libavformat/rtspdec.c index acae436c13..9306384555 100644 --- a/libavformat/rtspdec.c +++ b/libavformat/rtspdec.c @@ -409,8 +409,8 @@ AVInputFormat ff_rtsp_demuxer = { .read_packet = rtsp_read_packet, .read_close = rtsp_read_close, .read_seek = rtsp_read_seek, - .flags = AVFMT_NOFILE, - .read_play = rtsp_read_play, - .read_pause = rtsp_read_pause, - .priv_class = &rtsp_demuxer_class, + .flags = AVFMT_NOFILE, + .read_play = rtsp_read_play, + .read_pause = rtsp_read_pause, + .priv_class = &rtsp_demuxer_class, }; |