mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
lavf: use designated initialisers for all (de)muxers.
It's more readable and less prone to breakage.
This commit is contained in:
parent
6270995667
commit
dfc2c4d900
132 changed files with 1311 additions and 1466 deletions
|
|
@ -95,14 +95,12 @@ static int aea_read_packet(AVFormatContext *s, AVPacket *pkt)
|
|||
}
|
||||
|
||||
AVInputFormat ff_aea_demuxer = {
|
||||
"aea",
|
||||
NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
|
||||
0,
|
||||
aea_read_probe,
|
||||
aea_read_header,
|
||||
aea_read_packet,
|
||||
0,
|
||||
pcm_read_seek,
|
||||
.name = "aea",
|
||||
.long_name = NULL_IF_CONFIG_SMALL("MD STUDIO audio"),
|
||||
.read_probe = aea_read_probe,
|
||||
.read_header = aea_read_header,
|
||||
.read_packet = aea_read_packet,
|
||||
.read_seek = pcm_read_seek,
|
||||
.flags= AVFMT_GENERIC_INDEX,
|
||||
.extensions = "aea",
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue