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
638d79a9
Commit
638d79a9
authored
Nov 23, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: use designated initializer for AVClass
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
bea93944
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
ffprobe.c
ffprobe.c
+7
-8
No files found.
ffprobe.c
View file @
638d79a9
...
...
@@ -341,11 +341,10 @@ static void *writer_child_next(void *obj, void *prev)
}
static
const
AVClass
writer_class
=
{
"Writer"
,
writer_get_name
,
NULL
,
LIBAVUTIL_VERSION_INT
,
.
class_name
=
"Writer"
,
.
item_name
=
writer_get_name
,
.
option
=
writer_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
.
child_next
=
writer_child_next
,
};
...
...
@@ -706,9 +705,9 @@ static const char *name##_get_name(void *ctx) \
return #name ; \
} \
static const AVClass name##_class = { \
#name,
\
name##_get_name,
\
name##_options
\
.class_name = #name,
\
.item_name = name##_get_name,
\
.option = name##_options
\
}
/* Default output */
...
...
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