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
1d0afec8
Commit
1d0afec8
authored
Oct 14, 2011
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: add AVClass to writers
It is useful for logging messages from a writer context.
parent
bd4ebbbb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
ffprobe.c
ffprobe.c
+14
-0
No files found.
ffprobe.c
View file @
1d0afec8
...
...
@@ -155,6 +155,19 @@ struct WriterContext {
unsigned
int
nb_chapter
;
///< number of the chapter, starting at 0
};
static
const
char
*
writer_get_name
(
void
*
p
)
{
WriterContext
*
wctx
=
p
;
return
wctx
->
writer
->
name
;
}
static
const
AVClass
writer_class
=
{
"Writer"
,
writer_get_name
,
NULL
,
LIBAVUTIL_VERSION_INT
,
};
static
void
writer_close
(
WriterContext
**
wctx
)
{
if
(
*
wctx
&&
(
*
wctx
)
->
writer
->
uninit
)
...
...
@@ -179,6 +192,7 @@ static int writer_open(WriterContext **wctx, const Writer *writer,
goto
fail
;
}
(
*
wctx
)
->
class
=
&
writer_class
;
(
*
wctx
)
->
writer
=
writer
;
if
((
*
wctx
)
->
writer
->
init
)
ret
=
(
*
wctx
)
->
writer
->
init
(
*
wctx
,
args
,
opaque
);
...
...
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