Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b3bbc6fd
Commit
b3bbc6fd
authored
May 11, 2011
by
Clément Bœsch
Committed by
Diego Biurrun
May 12, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oggdec: use explicit AVInputFormat struct initializers
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
f95257d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
oggdec.c
libavformat/oggdec.c
+11
-11
No files found.
libavformat/oggdec.c
View file @
b3bbc6fd
...
...
@@ -648,15 +648,15 @@ static int ogg_probe(AVProbeData *p)
}
AVInputFormat
ff_ogg_demuxer
=
{
"ogg"
,
NULL_IF_CONFIG_SMALL
(
"Ogg"
),
sizeof
(
struct
ogg
),
ogg_probe
,
ogg_read_header
,
ogg_read_packet
,
ogg_read_close
,
ogg_read_seek
,
ogg_read_timestamp
,
.
extensions
=
"ogg"
,
.
flags
=
AVFMT_GENERIC_INDEX
,
.
name
=
"ogg"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Ogg"
),
.
priv_data_size
=
sizeof
(
struct
ogg
),
.
read_probe
=
ogg_probe
,
.
read_header
=
ogg_read_header
,
.
read_packet
=
ogg_read_packet
,
.
read_close
=
ogg_read_close
,
.
read_seek
=
ogg_read_seek
,
.
read_timestamp
=
ogg_read_timestamp
,
.
extensions
=
"ogg"
,
.
flags
=
AVFMT_GENERIC_INDEX
,
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment