diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-09 23:40:53 +0000 |
commit | d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a (patch) | |
tree | 859e011692e235fd60c89e25caea93c7e2d87fad /libavformat/crc.c | |
parent | 21227514de650da3de297acce893175230f04beb (diff) | |
download | ffmpeg-d2a067d1d9011bf1015fd23efcbfb20cd4f79e1a.tar.gz |
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/crc.c')
-rw-r--r-- | libavformat/crc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/crc.c b/libavformat/crc.c index 63eaf1bcdb..40c181007a 100644 --- a/libavformat/crc.c +++ b/libavformat/crc.c @@ -101,7 +101,7 @@ static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt) return 0; } -static AVOutputFormat crc_format = { +static AVOutputFormat crc_muxer = { "crc", "crc testing format", NULL, @@ -114,7 +114,7 @@ static AVOutputFormat crc_format = { crc_write_trailer, }; -static AVOutputFormat framecrc_format = { +static AVOutputFormat framecrc_muxer = { "framecrc", "framecrc testing format", NULL, @@ -129,8 +129,8 @@ static AVOutputFormat framecrc_format = { int crc_init(void) { - av_register_output_format(&crc_format); - av_register_output_format(&framecrc_format); + av_register_output_format(&crc_muxer); + av_register_output_format(&framecrc_muxer); return 0; } #endif /* CONFIG_MUXERS */ |