Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
545b0dd6
Commit
545b0dd6
authored
Mar 15, 2015
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/formats: proper error handling in ff_set_common_*() functions
parent
f861d9b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
18 deletions
+37
-18
formats.c
libavfilter/formats.c
+32
-13
formats.h
libavfilter/formats.h
+5
-5
No files found.
libavfilter/formats.c
View file @
545b0dd6
...
...
@@ -401,7 +401,12 @@ AVFilterChannelLayouts *ff_all_channel_counts(void)
}
#define FORMATS_REF(f, ref) \
void *tmp = av_realloc_array(f->refs, sizeof(*f->refs), f->refcount + 1); \
void *tmp; \
\
if (!ref) \
return AVERROR_BUG; \
\
tmp = av_realloc_array(f->refs, sizeof(*f->refs), f->refcount + 1); \
if (!tmp) \
return AVERROR(ENOMEM); \
f->refs = tmp; \
...
...
@@ -485,18 +490,24 @@ void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
}
#define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref, list) \
if (fmts) { \
int count = 0, i; \
\
if (!fmts) \
return AVERROR_BUG; \
\
for (i = 0; i < ctx->nb_inputs; i++) { \
if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) { \
ref(fmts, &ctx->inputs[i]->out_fmts); \
int ret = ref(fmts, &ctx->inputs[i]->out_fmts); \
if (ret < 0) \
return ret; \
count++; \
} \
} \
for (i = 0; i < ctx->nb_outputs; i++) { \
if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) { \
ref(fmts, &ctx->outputs[i]->in_fmts); \
int ret = ref(fmts, &ctx->outputs[i]->in_fmts); \
if (ret < 0) \
return ret; \
count++; \
} \
} \
...
...
@@ -506,17 +517,18 @@ if (fmts) { \
av_freep(&fmts->refs); \
av_freep(&fmts); \
} \
}
\
return 0;
void
ff_set_common_channel_layouts
(
AVFilterContext
*
ctx
,
AVFilterChannelLayouts
*
layouts
)
int
ff_set_common_channel_layouts
(
AVFilterContext
*
ctx
,
AVFilterChannelLayouts
*
layouts
)
{
SET_COMMON_FORMATS
(
ctx
,
layouts
,
in_channel_layouts
,
out_channel_layouts
,
ff_channel_layouts_ref
,
channel_layouts
);
}
void
ff_set_common_samplerates
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
samplerates
)
int
ff_set_common_samplerates
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
samplerates
)
{
SET_COMMON_FORMATS
(
ctx
,
samplerates
,
in_samplerates
,
out_samplerates
,
ff_formats_ref
,
formats
);
...
...
@@ -527,7 +539,7 @@ void ff_set_common_samplerates(AVFilterContext *ctx,
* formats. If there are no links hooked to this filter, the list of formats is
* freed.
*/
void
ff_set_common_formats
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
formats
)
int
ff_set_common_formats
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
formats
)
{
SET_COMMON_FORMATS
(
ctx
,
formats
,
in_formats
,
out_formats
,
ff_formats_ref
,
formats
);
...
...
@@ -536,14 +548,21 @@ void ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
static
int
default_query_formats_common
(
AVFilterContext
*
ctx
,
AVFilterChannelLayouts
*
(
layouts
)(
void
))
{
int
ret
;
enum
AVMediaType
type
=
ctx
->
inputs
&&
ctx
->
inputs
[
0
]
?
ctx
->
inputs
[
0
]
->
type
:
ctx
->
outputs
&&
ctx
->
outputs
[
0
]
?
ctx
->
outputs
[
0
]
->
type
:
AVMEDIA_TYPE_VIDEO
;
ff_set_common_formats
(
ctx
,
ff_all_formats
(
type
));
ret
=
ff_set_common_formats
(
ctx
,
ff_all_formats
(
type
));
if
(
ret
<
0
)
return
ret
;
if
(
type
==
AVMEDIA_TYPE_AUDIO
)
{
ff_set_common_channel_layouts
(
ctx
,
layouts
());
ff_set_common_samplerates
(
ctx
,
ff_all_samplerates
());
ret
=
ff_set_common_channel_layouts
(
ctx
,
layouts
());
if
(
ret
<
0
)
return
ret
;
ret
=
ff_set_common_samplerates
(
ctx
,
ff_all_samplerates
());
if
(
ret
<
0
)
return
ret
;
}
return
0
;
...
...
libavfilter/formats.h
View file @
545b0dd6
...
...
@@ -142,17 +142,17 @@ AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts);
* layouts/sample rates. If there are no links hooked to this filter, the list
* is freed.
*/
void
ff_set_common_channel_layouts
(
AVFilterContext
*
ctx
,
AVFilterChannelLayouts
*
layouts
);
void
ff_set_common_samplerates
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
samplerates
);
int
ff_set_common_channel_layouts
(
AVFilterContext
*
ctx
,
AVFilterChannelLayouts
*
layouts
);
int
ff_set_common_samplerates
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
samplerates
);
/**
* A helper for query_formats() which sets all links to the same list of
* formats. If there are no links hooked to this filter, the list of formats is
* freed.
*/
void
ff_set_common_formats
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
formats
);
int
ff_set_common_formats
(
AVFilterContext
*
ctx
,
AVFilterFormats
*
formats
);
int
ff_add_channel_layout
(
AVFilterChannelLayouts
**
l
,
uint64_t
channel_layout
);
...
...
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