mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-10-12 02:47:26 +08:00
give AVInput/OutputFormat structs consistent names
Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -211,7 +211,7 @@ static int flv_read_close(AVFormatContext *s)
|
||||
return 0;
|
||||
}
|
||||
|
||||
AVInputFormat flv_iformat = {
|
||||
AVInputFormat flv_demuxer = {
|
||||
"flv",
|
||||
"flv format",
|
||||
0,
|
||||
@ -225,6 +225,6 @@ AVInputFormat flv_iformat = {
|
||||
|
||||
int flvdec_init(void)
|
||||
{
|
||||
av_register_input_format(&flv_iformat);
|
||||
av_register_input_format(&flv_demuxer);
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user