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
285fe5b0
Commit
285fe5b0
authored
Sep 10, 2015
by
Luca Barbato
Committed by
Vittorio Giovara
Sep 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter: Support both syntaxes for the scale filter
parent
c7247eb7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
5 deletions
+38
-5
graphparser.c
libavfilter/graphparser.c
+38
-5
No files found.
libavfilter/graphparser.c
View file @
285fe5b0
...
@@ -81,6 +81,41 @@ static char *parse_link_name(const char **buf, void *log_ctx)
...
@@ -81,6 +81,41 @@ static char *parse_link_name(const char **buf, void *log_ctx)
return
name
;
return
name
;
}
}
#define TMP_ARGS_SIZE 256
static
void
append_sws_flags
(
const
char
**
args
,
const
char
*
sws_opts
,
char
*
tmp
)
{
int
nb_opts
=
0
;
const
char
*
separator
=
":"
;
const
char
*
opt
=
*
args
;
if
(
strstr
(
*
args
,
"flags"
))
return
;
if
(
strstr
(
*
args
,
"="
))
separator
=
":flags="
;
while
((
opt
=
strstr
(
opt
,
":"
))
&&
*
opt
)
{
av_log
(
NULL
,
AV_LOG_INFO
,
"opts '%s'
\n
"
,
opt
);
if
(
nb_opts
>
2
)
{
return
;
}
nb_opts
++
;
opt
++
;
}
opt
=
strstr
(
sws_opts
,
"flags="
);
if
(
opt
&&
strlen
(
opt
)
>
6
)
opt
+=
6
;
else
opt
=
sws_opts
;
snprintf
(
tmp
,
TMP_ARGS_SIZE
,
"%s%s%s"
,
*
args
,
separator
,
opt
);
*
args
=
tmp
;
}
/**
/**
* Create an instance of a filter, initialize and insert it in the
* Create an instance of a filter, initialize and insert it in the
* filtergraph in *ctx.
* filtergraph in *ctx.
...
@@ -98,7 +133,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
...
@@ -98,7 +133,7 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
{
{
AVFilter
*
filt
;
AVFilter
*
filt
;
char
inst_name
[
30
];
char
inst_name
[
30
];
char
tmp_args
[
256
];
char
tmp_args
[
TMP_ARGS_SIZE
];
int
ret
;
int
ret
;
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"Parsed filter %d %s"
,
index
,
filt_name
);
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"Parsed filter %d %s"
,
index
,
filt_name
);
...
@@ -118,11 +153,9 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
...
@@ -118,11 +153,9 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
}
}
if
(
!
strcmp
(
filt_name
,
"scale"
)
&&
args
&&
!
strstr
(
args
,
"flags"
)
&&
if
(
!
strcmp
(
filt_name
,
"scale"
)
&&
args
&&
ctx
->
scale_sws_opts
)
{
ctx
->
scale_sws_opts
)
{
snprintf
(
tmp_args
,
sizeof
(
tmp_args
),
"%s:%s"
,
append_sws_flags
(
&
args
,
ctx
->
scale_sws_opts
,
tmp_args
);
args
,
ctx
->
scale_sws_opts
);
args
=
tmp_args
;
}
}
ret
=
avfilter_init_str
(
*
filt_ctx
,
args
);
ret
=
avfilter_init_str
(
*
filt_ctx
,
args
);
...
...
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