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
fd127ede
Commit
fd127ede
authored
May 07, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfiltergraph: reindent
parent
ff1f51a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
60 additions
and
60 deletions
+60
-60
avfiltergraph.c
libavfilter/avfiltergraph.c
+60
-60
No files found.
libavfilter/avfiltergraph.c
View file @
fd127ede
...
...
@@ -191,70 +191,70 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
}
if
(
convert_needed
)
{
AVFilterContext
*
convert
;
AVFilter
*
filter
;
AVFilterLink
*
inlink
,
*
outlink
;
char
scale_args
[
256
];
char
inst_name
[
30
];
/* couldn't merge format lists. auto-insert conversion filter */
switch
(
link
->
type
)
{
case
AVMEDIA_TYPE_VIDEO
:
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"auto-inserted scaler %d"
,
scaler_count
++
);
snprintf
(
scale_args
,
sizeof
(
scale_args
),
"0:0:%s"
,
graph
->
scale_sws_opts
);
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
avfilter_get_by_name
(
"scale"
),
inst_name
,
scale_args
,
NULL
,
graph
))
<
0
)
return
ret
;
break
;
case
AVMEDIA_TYPE_AUDIO
:
if
(
!
(
filter
=
avfilter_get_by_name
(
"resample"
)))
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"'resample' filter "
"not present, cannot convert audio formats.
\n
"
);
return
AVERROR
(
EINVAL
);
}
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"auto-inserted resampler %d"
,
resampler_count
++
);
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
avfilter_get_by_name
(
"resample"
),
inst_name
,
NULL
,
NULL
,
graph
))
<
0
)
return
ret
;
break
;
default:
AVFilterContext
*
convert
;
AVFilter
*
filter
;
AVFilterLink
*
inlink
,
*
outlink
;
char
scale_args
[
256
];
char
inst_name
[
30
];
/* couldn't merge format lists. auto-insert conversion filter */
switch
(
link
->
type
)
{
case
AVMEDIA_TYPE_VIDEO
:
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"auto-inserted scaler %d"
,
scaler_count
++
);
snprintf
(
scale_args
,
sizeof
(
scale_args
),
"0:0:%s"
,
graph
->
scale_sws_opts
);
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
avfilter_get_by_name
(
"scale"
),
inst_name
,
scale_args
,
NULL
,
graph
))
<
0
)
return
ret
;
break
;
case
AVMEDIA_TYPE_AUDIO
:
if
(
!
(
filter
=
avfilter_get_by_name
(
"resample"
)))
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"'resample' filter "
"not present, cannot convert audio formats.
\n
"
);
return
AVERROR
(
EINVAL
);
}
if
((
ret
=
avfilter_insert_filter
(
link
,
convert
,
0
,
0
))
<
0
)
return
ret
;
convert
->
filter
->
query_formats
(
convert
);
inlink
=
convert
->
inputs
[
0
];
outlink
=
convert
->
outputs
[
0
];
if
(
!
avfilter_merge_formats
(
inlink
->
in_formats
,
inlink
->
out_formats
)
||
!
avfilter_merge_formats
(
outlink
->
in_formats
,
outlink
->
out_formats
))
ret
|=
AVERROR
(
ENOSYS
);
if
(
inlink
->
type
==
AVMEDIA_TYPE_AUDIO
&&
(
!
ff_merge_samplerates
(
inlink
->
in_samplerates
,
inlink
->
out_samplerates
)
||
!
ff_merge_channel_layouts
(
inlink
->
in_channel_layouts
,
inlink
->
out_channel_layouts
)))
ret
|=
AVERROR
(
ENOSYS
);
if
(
outlink
->
type
==
AVMEDIA_TYPE_AUDIO
&&
(
!
ff_merge_samplerates
(
outlink
->
in_samplerates
,
outlink
->
out_samplerates
)
||
!
ff_merge_channel_layouts
(
outlink
->
in_channel_layouts
,
outlink
->
out_channel_layouts
)))
ret
|=
AVERROR
(
ENOSYS
);
if
(
ret
<
0
)
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"Impossible to convert between the formats supported by the filter "
"'%s' and the filter '%s'
\n
"
,
link
->
src
->
name
,
link
->
dst
->
name
);
snprintf
(
inst_name
,
sizeof
(
inst_name
),
"auto-inserted resampler %d"
,
resampler_count
++
);
if
((
ret
=
avfilter_graph_create_filter
(
&
convert
,
avfilter_get_by_name
(
"resample"
),
inst_name
,
NULL
,
NULL
,
graph
))
<
0
)
return
ret
;
}
break
;
default:
return
AVERROR
(
EINVAL
);
}
if
((
ret
=
avfilter_insert_filter
(
link
,
convert
,
0
,
0
))
<
0
)
return
ret
;
convert
->
filter
->
query_formats
(
convert
);
inlink
=
convert
->
inputs
[
0
];
outlink
=
convert
->
outputs
[
0
];
if
(
!
avfilter_merge_formats
(
inlink
->
in_formats
,
inlink
->
out_formats
)
||
!
avfilter_merge_formats
(
outlink
->
in_formats
,
outlink
->
out_formats
))
ret
|=
AVERROR
(
ENOSYS
);
if
(
inlink
->
type
==
AVMEDIA_TYPE_AUDIO
&&
(
!
ff_merge_samplerates
(
inlink
->
in_samplerates
,
inlink
->
out_samplerates
)
||
!
ff_merge_channel_layouts
(
inlink
->
in_channel_layouts
,
inlink
->
out_channel_layouts
)))
ret
|=
AVERROR
(
ENOSYS
);
if
(
outlink
->
type
==
AVMEDIA_TYPE_AUDIO
&&
(
!
ff_merge_samplerates
(
outlink
->
in_samplerates
,
outlink
->
out_samplerates
)
||
!
ff_merge_channel_layouts
(
outlink
->
in_channel_layouts
,
outlink
->
out_channel_layouts
)))
ret
|=
AVERROR
(
ENOSYS
);
if
(
ret
<
0
)
{
av_log
(
log_ctx
,
AV_LOG_ERROR
,
"Impossible to convert between the formats supported by the filter "
"'%s' and the filter '%s'
\n
"
,
link
->
src
->
name
,
link
->
dst
->
name
);
return
ret
;
}
}
}
}
...
...
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