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
2b97be5d
Commit
2b97be5d
authored
Feb 17, 2012
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples/filtering: fix unused variable and return value in open_input_file().
parent
b117c392
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
filtering.c
doc/examples/filtering.c
+2
-1
No files found.
doc/examples/filtering.c
View file @
2b97be5d
...
...
@@ -47,7 +47,7 @@ static int64_t last_pts = AV_NOPTS_VALUE;
static
int
open_input_file
(
const
char
*
filename
)
{
int
ret
,
i
;
int
ret
;
AVCodec
*
dec
;
if
((
ret
=
avformat_open_input
(
&
fmt_ctx
,
filename
,
NULL
,
NULL
))
<
0
)
{
...
...
@@ -126,6 +126,7 @@ static int init_filters(const char *filters_descr)
if
((
ret
=
avfilter_graph_config
(
filter_graph
,
NULL
))
<
0
)
return
ret
;
return
0
;
}
static
void
display_picref
(
AVFilterBufferRef
*
picref
,
AVRational
time_base
)
...
...
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