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/rtspenc.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/rtspenc.c')
-rw-r--r-- | libavformat/rtspenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c index 6c14fe6c2b..ad6e485906 100644 --- a/libavformat/rtspenc.c +++ b/libavformat/rtspenc.c @@ -242,6 +242,6 @@ AVOutputFormat ff_rtsp_muxer = { .write_header = rtsp_write_header, .write_packet = rtsp_write_packet, .write_trailer = rtsp_write_close, - .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER, - .priv_class = &rtsp_muxer_class, + .flags = AVFMT_NOFILE | AVFMT_GLOBALHEADER, + .priv_class = &rtsp_muxer_class, }; |