2008-02-10 20:02:11 +02:00
|
|
|
/*
|
|
|
|
* Filter layer - format negotiation
|
2010-11-28 12:22:58 +02:00
|
|
|
* Copyright (c) 2007 Bobby Bingham
|
2008-02-10 20:02:11 +02:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2013-01-02 17:11:30 +03:00
|
|
|
#include "libavutil/avassert.h"
|
2012-11-13 16:16:48 +03:00
|
|
|
#include "libavutil/channel_layout.h"
|
2012-08-06 16:49:32 +03:00
|
|
|
#include "libavutil/common.h"
|
2011-08-04 12:28:14 +03:00
|
|
|
#include "libavutil/eval.h"
|
2010-01-04 02:08:11 +02:00
|
|
|
#include "libavutil/pixdesc.h"
|
2012-05-17 03:37:13 +03:00
|
|
|
#include "libavutil/parseutils.h"
|
2008-02-10 20:02:11 +02:00
|
|
|
#include "avfilter.h"
|
2011-06-30 10:51:17 +03:00
|
|
|
#include "internal.h"
|
2012-05-06 07:59:06 +03:00
|
|
|
#include "formats.h"
|
2008-02-10 20:02:11 +02:00
|
|
|
|
2013-01-02 17:11:30 +03:00
|
|
|
#define KNOWN(l) (!FF_LAYOUT2COUNT(l)) /* for readability */
|
|
|
|
|
2008-02-22 00:10:11 +02:00
|
|
|
/**
|
|
|
|
* Add all refs from a to ret and destroy a.
|
2020-08-07 03:41:18 +02:00
|
|
|
* ret->refs must have enough spare room left for this.
|
2008-02-22 00:10:11 +02:00
|
|
|
*/
|
2020-08-07 03:41:18 +02:00
|
|
|
#define MERGE_REF_NO_ALLOC(ret, a, fmts) \
|
2012-05-06 07:59:06 +03:00
|
|
|
do { \
|
|
|
|
int i; \
|
|
|
|
for (i = 0; i < a->refcount; i ++) { \
|
|
|
|
ret->refs[ret->refcount] = a->refs[i]; \
|
|
|
|
*ret->refs[ret->refcount++] = ret; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
av_freep(&a->refs); \
|
|
|
|
av_freep(&a->fmts); \
|
|
|
|
av_freep(&a); \
|
|
|
|
} while (0)
|
2008-02-10 20:04:55 +02:00
|
|
|
|
2020-08-12 22:31:50 +02:00
|
|
|
#define MERGE_REF(ret, a, fmts, type, fail_statement) \
|
2020-08-07 03:41:18 +02:00
|
|
|
do { \
|
|
|
|
type ***tmp; \
|
|
|
|
\
|
|
|
|
if (!(tmp = av_realloc_array(ret->refs, ret->refcount + a->refcount, \
|
|
|
|
sizeof(*tmp)))) \
|
2020-08-12 22:31:50 +02:00
|
|
|
{ fail_statement } \
|
2020-08-07 03:41:18 +02:00
|
|
|
ret->refs = tmp; \
|
|
|
|
MERGE_REF_NO_ALLOC(ret, a, fmts); \
|
|
|
|
} while (0)
|
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
/**
|
|
|
|
* Add all formats common for a and b to ret, copy the refs and destroy
|
|
|
|
* a and b.
|
|
|
|
*/
|
|
|
|
#define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail) \
|
|
|
|
do { \
|
|
|
|
int i, j, k = 0, count = FFMIN(a->nb, b->nb); \
|
2020-08-07 03:41:18 +02:00
|
|
|
type ***tmp; \
|
2012-05-06 07:59:06 +03:00
|
|
|
\
|
|
|
|
if (!(ret = av_mallocz(sizeof(*ret)))) \
|
|
|
|
goto fail; \
|
|
|
|
\
|
|
|
|
if (count) { \
|
2014-06-14 00:15:16 +03:00
|
|
|
if (!(ret->fmts = av_malloc_array(count, sizeof(*ret->fmts)))) \
|
2012-05-06 07:59:06 +03:00
|
|
|
goto fail; \
|
|
|
|
for (i = 0; i < a->nb; i++) \
|
|
|
|
for (j = 0; j < b->nb; j++) \
|
2012-05-16 03:27:31 +03:00
|
|
|
if (a->fmts[i] == b->fmts[j]) { \
|
|
|
|
if(k >= FFMIN(a->nb, b->nb)){ \
|
2017-12-04 06:50:34 +02:00
|
|
|
av_log(NULL, AV_LOG_ERROR, "Duplicate formats in %s detected\n", __FUNCTION__); \
|
2012-05-16 03:27:31 +03:00
|
|
|
av_free(ret->fmts); \
|
|
|
|
av_free(ret); \
|
|
|
|
return NULL; \
|
|
|
|
} \
|
2012-05-06 07:59:06 +03:00
|
|
|
ret->fmts[k++] = a->fmts[i]; \
|
2012-05-16 03:27:31 +03:00
|
|
|
} \
|
2012-05-06 07:59:06 +03:00
|
|
|
} \
|
2012-05-16 03:27:31 +03:00
|
|
|
ret->nb = k; \
|
2012-05-06 07:59:06 +03:00
|
|
|
/* check that there was at least one common format */ \
|
|
|
|
if (!ret->nb) \
|
|
|
|
goto fail; \
|
|
|
|
\
|
2020-08-07 03:41:18 +02:00
|
|
|
tmp = av_realloc_array(NULL, a->refcount + b->refcount, sizeof(*tmp)); \
|
|
|
|
if (!tmp) \
|
|
|
|
goto fail; \
|
|
|
|
ret->refs = tmp; \
|
|
|
|
\
|
|
|
|
MERGE_REF_NO_ALLOC(ret, a, fmts); \
|
|
|
|
MERGE_REF_NO_ALLOC(ret, b, fmts); \
|
2012-05-06 07:59:06 +03:00
|
|
|
} while (0)
|
2008-02-10 20:04:52 +02:00
|
|
|
|
2013-02-21 16:02:13 +03:00
|
|
|
AVFilterFormats *ff_merge_formats(AVFilterFormats *a, AVFilterFormats *b,
|
|
|
|
enum AVMediaType type)
|
2008-02-10 20:02:11 +02:00
|
|
|
{
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterFormats *ret = NULL;
|
2013-02-19 17:00:01 +03:00
|
|
|
int i, j;
|
|
|
|
int alpha1=0, alpha2=0;
|
|
|
|
int chroma1=0, chroma2=0;
|
2008-02-10 20:02:11 +02:00
|
|
|
|
2011-06-08 19:24:25 +03:00
|
|
|
if (a == b)
|
|
|
|
return a;
|
2011-06-08 19:24:25 +03:00
|
|
|
|
2013-02-21 16:02:13 +03:00
|
|
|
/* Do not lose chroma or alpha in merging.
|
|
|
|
It happens if both lists have formats with chroma (resp. alpha), but
|
|
|
|
the only formats in common do not have it (e.g. YUV+gray vs.
|
|
|
|
RGB+gray): in that case, the merging would select the gray format,
|
|
|
|
possibly causing a lossy conversion elsewhere in the graph.
|
|
|
|
To avoid that, pretend that there are no common formats to force the
|
|
|
|
insertion of a conversion filter. */
|
|
|
|
if (type == AVMEDIA_TYPE_VIDEO)
|
2013-05-18 12:40:38 +03:00
|
|
|
for (i = 0; i < a->nb_formats; i++)
|
|
|
|
for (j = 0; j < b->nb_formats; j++) {
|
2013-02-24 14:05:06 +03:00
|
|
|
const AVPixFmtDescriptor *adesc = av_pix_fmt_desc_get(a->formats[i]);
|
|
|
|
const AVPixFmtDescriptor *bdesc = av_pix_fmt_desc_get(b->formats[j]);
|
2013-05-15 12:23:14 +03:00
|
|
|
alpha2 |= adesc->flags & bdesc->flags & AV_PIX_FMT_FLAG_ALPHA;
|
2013-02-24 14:05:06 +03:00
|
|
|
chroma2|= adesc->nb_components > 1 && bdesc->nb_components > 1;
|
|
|
|
if (a->formats[i] == b->formats[j]) {
|
2013-05-15 12:23:14 +03:00
|
|
|
alpha1 |= adesc->flags & AV_PIX_FMT_FLAG_ALPHA;
|
2013-02-24 14:05:06 +03:00
|
|
|
chroma1|= adesc->nb_components > 1;
|
|
|
|
}
|
2013-02-19 17:00:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// If chroma or alpha can be lost through merging then do not merge
|
|
|
|
if (alpha2 > alpha1 || chroma2 > chroma1)
|
|
|
|
return NULL;
|
|
|
|
|
2013-03-31 17:38:07 +03:00
|
|
|
MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
|
2008-02-10 20:02:11 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
return ret;
|
|
|
|
fail:
|
|
|
|
if (ret) {
|
2020-08-07 04:10:05 +02:00
|
|
|
av_assert1(!ret->refs);
|
2012-05-06 07:59:06 +03:00
|
|
|
av_freep(&ret->formats);
|
2020-08-07 04:10:05 +02:00
|
|
|
av_freep(&ret);
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
2012-05-06 07:59:06 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
AVFilterFormats *ff_merge_samplerates(AVFilterFormats *a,
|
|
|
|
AVFilterFormats *b)
|
|
|
|
{
|
|
|
|
AVFilterFormats *ret = NULL;
|
2008-02-10 20:02:11 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
if (a == b) return a;
|
2008-02-10 20:04:52 +02:00
|
|
|
|
2013-03-31 17:38:07 +03:00
|
|
|
if (a->nb_formats && b->nb_formats) {
|
|
|
|
MERGE_FORMATS(ret, a, b, formats, nb_formats, AVFilterFormats, fail);
|
|
|
|
} else if (a->nb_formats) {
|
2020-08-12 22:31:50 +02:00
|
|
|
MERGE_REF(a, b, formats, AVFilterFormats, return NULL;);
|
2012-05-06 07:59:06 +03:00
|
|
|
ret = a;
|
|
|
|
} else {
|
2020-08-12 22:31:50 +02:00
|
|
|
MERGE_REF(b, a, formats, AVFilterFormats, return NULL;);
|
2012-05-06 07:59:06 +03:00
|
|
|
ret = b;
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2012-05-06 07:59:06 +03:00
|
|
|
fail:
|
|
|
|
if (ret) {
|
2020-08-07 04:10:05 +02:00
|
|
|
av_assert1(!ret->refs);
|
2012-05-06 07:59:06 +03:00
|
|
|
av_freep(&ret->formats);
|
2020-08-07 04:10:05 +02:00
|
|
|
av_freep(&ret);
|
2012-05-06 07:59:06 +03:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-02-10 20:04:52 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterChannelLayouts *ff_merge_channel_layouts(AVFilterChannelLayouts *a,
|
|
|
|
AVFilterChannelLayouts *b)
|
|
|
|
{
|
2020-08-12 22:31:50 +02:00
|
|
|
uint64_t *channel_layouts;
|
2013-01-02 17:11:30 +03:00
|
|
|
unsigned a_all = a->all_layouts + a->all_counts;
|
|
|
|
unsigned b_all = b->all_layouts + b->all_counts;
|
|
|
|
int ret_max, ret_nb = 0, i, j, round;
|
2012-05-06 07:59:06 +03:00
|
|
|
|
|
|
|
if (a == b) return a;
|
|
|
|
|
2013-01-02 17:11:30 +03:00
|
|
|
/* Put the most generic set in a, to avoid doing everything twice */
|
|
|
|
if (a_all < b_all) {
|
|
|
|
FFSWAP(AVFilterChannelLayouts *, a, b);
|
|
|
|
FFSWAP(unsigned, a_all, b_all);
|
|
|
|
}
|
|
|
|
if (a_all) {
|
|
|
|
if (a_all == 1 && !b_all) {
|
|
|
|
/* keep only known layouts in b; works also for b_all = 1 */
|
|
|
|
for (i = j = 0; i < b->nb_channel_layouts; i++)
|
|
|
|
if (KNOWN(b->channel_layouts[i]))
|
|
|
|
b->channel_layouts[j++] = b->channel_layouts[i];
|
2013-03-14 23:54:48 +03:00
|
|
|
/* Not optimal: the unknown layouts of b may become known after
|
|
|
|
another merge. */
|
|
|
|
if (!j)
|
|
|
|
return NULL;
|
2013-01-02 17:11:30 +03:00
|
|
|
b->nb_channel_layouts = j;
|
|
|
|
}
|
2020-08-12 22:31:50 +02:00
|
|
|
MERGE_REF(b, a, channel_layouts, AVFilterChannelLayouts, return NULL;);
|
2013-01-02 17:11:30 +03:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret_max = a->nb_channel_layouts + b->nb_channel_layouts;
|
2020-08-12 22:31:50 +02:00
|
|
|
if (!(channel_layouts = av_malloc_array(ret_max, sizeof(*channel_layouts))))
|
|
|
|
return NULL;
|
2013-01-02 17:11:30 +03:00
|
|
|
|
|
|
|
/* a[known] intersect b[known] */
|
|
|
|
for (i = 0; i < a->nb_channel_layouts; i++) {
|
|
|
|
if (!KNOWN(a->channel_layouts[i]))
|
|
|
|
continue;
|
|
|
|
for (j = 0; j < b->nb_channel_layouts; j++) {
|
|
|
|
if (a->channel_layouts[i] == b->channel_layouts[j]) {
|
2020-08-12 22:31:50 +02:00
|
|
|
channel_layouts[ret_nb++] = a->channel_layouts[i];
|
2013-01-02 17:11:30 +03:00
|
|
|
a->channel_layouts[i] = b->channel_layouts[j] = 0;
|
avfilter/formats: Fix heap-buffer overflow when merging channel layouts
The channel layouts accepted by ff_merge_channel_layouts() are of two
types: Ordinary channel layouts and generic channel layouts. These are
layouts that match all layouts with a certain number of channels.
Therefore parsing these channel layouts is not done in one go; instead
first the intersection of the ordinary layouts of the first input
list of channel layouts with the ordinary layouts of the second list is
determined, then the intersection of the ordinary layouts of the first
one and the generic layouts of the second one etc. In order to mark the
ordinary channel layouts that have already been matched as used they are
zeroed. The inner loop that does this is as follows:
for (j = 0; j < b->nb_channel_layouts; j++) {
if (a->channel_layouts[i] == b->channel_layouts[j]) {
ret->channel_layouts[ret_nb++] = a->channel_layouts[i];
a->channel_layouts[i] = b->channel_layouts[j] = 0;
}
}
(Here ret->channel_layouts is the array containing the intersection of
the two input arrays.)
Yet the problem with this code is that after a match has been found, the
loop continues the search with the new value a->channel_layouts[i].
The intention of zeroing these elements was to make sure that elements
already paired at this stage are ignored later. And while they are indeed
ignored when pairing ordinary and generic channel layouts later, it has
the exact opposite effect when pairing ordinary channel layouts.
To see this consider the channel layouts A B C D E and E D C B A. In the
first round, A and A will be paired and added to ret->channel_layouts.
In the second round, the input arrays are 0 B C D E and E D C B 0.
At first B and B will be matched and zeroed, but after doing so matching
continues, but this time it will search for 0, which will match with the
last entry of the second array. ret->channel_layouts now contains A B 0.
In the third round, C 0 0 will be added to ret->channel_layouts etc.
This gives a quadratic amount of elements, yet the amount of elements
allocated for said array is only the sum of the sizes of a and b.
This issue can e.g. be reproduced by
ffmpeg -f lavfi -i anullsrc=cl=7.1 \
-af 'aformat=cl=mono|stereo|2.1|3.0|4.0,aformat=cl=4.0|3.0|2.1|stereo|mono' \
-f null -
The fix is easy: break out of the inner loop after having found a match.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
2020-08-13 04:02:26 +02:00
|
|
|
break;
|
2013-01-02 17:11:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* 1st round: a[known] intersect b[generic]
|
|
|
|
2nd round: a[generic] intersect b[known] */
|
|
|
|
for (round = 0; round < 2; round++) {
|
|
|
|
for (i = 0; i < a->nb_channel_layouts; i++) {
|
|
|
|
uint64_t fmt = a->channel_layouts[i], bfmt;
|
|
|
|
if (!fmt || !KNOWN(fmt))
|
|
|
|
continue;
|
|
|
|
bfmt = FF_COUNT2LAYOUT(av_get_channel_layout_nb_channels(fmt));
|
|
|
|
for (j = 0; j < b->nb_channel_layouts; j++)
|
|
|
|
if (b->channel_layouts[j] == bfmt)
|
2020-08-12 22:31:50 +02:00
|
|
|
channel_layouts[ret_nb++] = a->channel_layouts[i];
|
2013-01-02 17:11:30 +03:00
|
|
|
}
|
|
|
|
/* 1st round: swap to prepare 2nd round; 2nd round: put it back */
|
|
|
|
FFSWAP(AVFilterChannelLayouts *, a, b);
|
|
|
|
}
|
|
|
|
/* a[generic] intersect b[generic] */
|
|
|
|
for (i = 0; i < a->nb_channel_layouts; i++) {
|
|
|
|
if (KNOWN(a->channel_layouts[i]))
|
|
|
|
continue;
|
|
|
|
for (j = 0; j < b->nb_channel_layouts; j++)
|
|
|
|
if (a->channel_layouts[i] == b->channel_layouts[j])
|
2020-08-12 22:31:50 +02:00
|
|
|
channel_layouts[ret_nb++] = a->channel_layouts[i];
|
2012-05-06 07:59:06 +03:00
|
|
|
}
|
2008-02-10 20:02:11 +02:00
|
|
|
|
2020-08-12 22:31:50 +02:00
|
|
|
if (!ret_nb)
|
2013-01-02 17:11:30 +03:00
|
|
|
goto fail;
|
2020-08-07 03:41:18 +02:00
|
|
|
|
2020-08-12 22:31:50 +02:00
|
|
|
if (a->refcount > b->refcount)
|
|
|
|
FFSWAP(AVFilterChannelLayouts *, a, b);
|
|
|
|
|
|
|
|
MERGE_REF(b, a, channel_layouts, AVFilterChannelLayouts, goto fail;);
|
|
|
|
av_freep(&b->channel_layouts);
|
|
|
|
b->channel_layouts = channel_layouts;
|
|
|
|
b->nb_channel_layouts = ret_nb;
|
|
|
|
return b;
|
2013-01-02 17:11:30 +03:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
fail:
|
2020-08-12 22:31:50 +02:00
|
|
|
av_free(channel_layouts);
|
2012-05-06 07:59:06 +03:00
|
|
|
return NULL;
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
|
|
|
|
2011-06-30 10:51:17 +03:00
|
|
|
int ff_fmt_is_in(int fmt, const int *fmts)
|
|
|
|
{
|
|
|
|
const int *p;
|
|
|
|
|
|
|
|
for (p = fmts; *p != -1; p++) {
|
|
|
|
if (fmt == *p)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-18 13:43:31 +03:00
|
|
|
#define MAKE_FORMAT_LIST(type, field, count_field) \
|
|
|
|
type *formats; \
|
2011-06-07 21:17:23 +03:00
|
|
|
int count = 0; \
|
|
|
|
if (fmts) \
|
|
|
|
for (count = 0; fmts[count] != -1; count++) \
|
|
|
|
; \
|
2012-05-18 13:43:31 +03:00
|
|
|
formats = av_mallocz(sizeof(*formats)); \
|
2015-03-12 23:39:27 +02:00
|
|
|
if (!formats) \
|
|
|
|
return NULL; \
|
2012-05-18 13:43:31 +03:00
|
|
|
formats->count_field = count; \
|
2011-06-07 21:17:23 +03:00
|
|
|
if (count) { \
|
2014-06-14 00:15:16 +03:00
|
|
|
formats->field = av_malloc_array(count, sizeof(*formats->field)); \
|
2012-05-18 13:43:31 +03:00
|
|
|
if (!formats->field) { \
|
2015-03-12 23:39:27 +02:00
|
|
|
av_freep(&formats); \
|
2011-06-07 21:17:23 +03:00
|
|
|
return NULL; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
AVFilterFormats *ff_make_format_list(const int *fmts)
|
2009-10-19 02:06:52 +03:00
|
|
|
{
|
2013-05-18 12:40:38 +03:00
|
|
|
MAKE_FORMAT_LIST(AVFilterFormats, formats, nb_formats);
|
2011-06-07 21:17:23 +03:00
|
|
|
while (count--)
|
|
|
|
formats->formats[count] = fmts[count];
|
2009-10-19 02:06:52 +03:00
|
|
|
|
2011-06-07 21:17:23 +03:00
|
|
|
return formats;
|
|
|
|
}
|
2015-12-09 14:40:03 +02:00
|
|
|
|
2020-08-08 00:37:46 +02:00
|
|
|
AVFilterChannelLayouts *ff_make_format64_list(const int64_t *fmts)
|
2011-06-07 21:17:23 +03:00
|
|
|
{
|
2012-05-18 13:43:31 +03:00
|
|
|
MAKE_FORMAT_LIST(AVFilterChannelLayouts,
|
|
|
|
channel_layouts, nb_channel_layouts);
|
2011-06-07 21:17:23 +03:00
|
|
|
if (count)
|
2012-05-18 13:43:31 +03:00
|
|
|
memcpy(formats->channel_layouts, fmts,
|
|
|
|
sizeof(*formats->channel_layouts) * count);
|
2009-10-19 02:06:52 +03:00
|
|
|
|
2012-05-18 13:43:31 +03:00
|
|
|
return formats;
|
2009-10-19 02:06:52 +03:00
|
|
|
}
|
|
|
|
|
2020-08-08 00:37:46 +02:00
|
|
|
#if LIBAVFILTER_VERSION_MAJOR < 8
|
|
|
|
AVFilterChannelLayouts *avfilter_make_format64_list(const int64_t *fmts)
|
|
|
|
{
|
|
|
|
return ff_make_format64_list(fmts);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-05 05:39:25 +02:00
|
|
|
#define ADD_FORMAT(f, fmt, unref_fn, type, list, nb) \
|
2012-05-06 07:59:06 +03:00
|
|
|
do { \
|
|
|
|
type *fmts; \
|
2014-11-21 23:13:44 +02:00
|
|
|
void *oldf = *f; \
|
2012-05-06 07:59:06 +03:00
|
|
|
\
|
2015-10-05 05:39:25 +02:00
|
|
|
if (!(*f) && !(*f = av_mallocz(sizeof(**f)))) { \
|
2012-05-06 07:59:06 +03:00
|
|
|
return AVERROR(ENOMEM); \
|
2015-10-05 05:39:25 +02:00
|
|
|
} \
|
2012-05-06 07:59:06 +03:00
|
|
|
\
|
2015-03-14 22:17:27 +02:00
|
|
|
fmts = av_realloc_array((*f)->list, (*f)->nb + 1, \
|
|
|
|
sizeof(*(*f)->list)); \
|
2014-11-17 01:22:20 +02:00
|
|
|
if (!fmts) { \
|
2015-10-05 05:39:25 +02:00
|
|
|
unref_fn(f); \
|
2014-11-21 23:13:44 +02:00
|
|
|
if (!oldf) \
|
|
|
|
av_freep(f); \
|
2012-05-06 07:59:06 +03:00
|
|
|
return AVERROR(ENOMEM); \
|
2014-11-17 01:22:20 +02:00
|
|
|
} \
|
2012-05-06 07:59:06 +03:00
|
|
|
\
|
|
|
|
(*f)->list = fmts; \
|
|
|
|
(*f)->list[(*f)->nb++] = fmt; \
|
|
|
|
} while (0)
|
|
|
|
|
2012-06-05 23:43:44 +03:00
|
|
|
int ff_add_format(AVFilterFormats **avff, int64_t fmt)
|
2010-01-04 00:26:59 +02:00
|
|
|
{
|
2015-10-05 05:39:25 +02:00
|
|
|
ADD_FORMAT(avff, fmt, ff_formats_unref, int, formats, nb_formats);
|
2013-01-02 17:11:30 +03:00
|
|
|
return 0;
|
2012-05-06 07:59:06 +03:00
|
|
|
}
|
2010-01-04 00:26:59 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
int ff_add_channel_layout(AVFilterChannelLayouts **l, uint64_t channel_layout)
|
|
|
|
{
|
2013-01-02 17:11:30 +03:00
|
|
|
av_assert1(!(*l && (*l)->all_layouts));
|
2015-10-05 05:39:25 +02:00
|
|
|
ADD_FORMAT(l, channel_layout, ff_channel_layouts_unref, uint64_t, channel_layouts, nb_channel_layouts);
|
2013-01-02 17:11:30 +03:00
|
|
|
return 0;
|
2010-01-04 00:26:59 +02:00
|
|
|
}
|
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
AVFilterFormats *ff_all_formats(enum AVMediaType type)
|
2008-02-10 20:02:11 +02:00
|
|
|
{
|
2010-01-06 18:19:13 +02:00
|
|
|
AVFilterFormats *ret = NULL;
|
2008-02-10 20:04:49 +02:00
|
|
|
|
2014-05-24 12:15:15 +03:00
|
|
|
if (type == AVMEDIA_TYPE_VIDEO) {
|
|
|
|
const AVPixFmtDescriptor *desc = NULL;
|
|
|
|
while ((desc = av_pix_fmt_desc_next(desc))) {
|
2015-10-05 05:39:25 +02:00
|
|
|
if (ff_add_format(&ret, av_pix_fmt_desc_get_id(desc)) < 0)
|
|
|
|
return NULL;
|
2014-05-24 12:15:15 +03:00
|
|
|
}
|
|
|
|
} else if (type == AVMEDIA_TYPE_AUDIO) {
|
|
|
|
enum AVSampleFormat fmt = 0;
|
|
|
|
while (av_get_sample_fmt_name(fmt)) {
|
2015-10-05 05:39:25 +02:00
|
|
|
if (ff_add_format(&ret, fmt) < 0)
|
|
|
|
return NULL;
|
2014-05-24 12:15:15 +03:00
|
|
|
fmt++;
|
|
|
|
}
|
2012-10-06 14:29:37 +03:00
|
|
|
}
|
2008-02-10 20:04:49 +02:00
|
|
|
|
|
|
|
return ret;
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
|
|
|
|
2020-04-16 16:40:40 +02:00
|
|
|
int ff_formats_pixdesc_filter(AVFilterFormats **rfmts, unsigned want, unsigned rej)
|
|
|
|
{
|
|
|
|
unsigned nb_formats, fmt, flags;
|
|
|
|
AVFilterFormats *formats = NULL;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
nb_formats = 0;
|
|
|
|
for (fmt = 0;; fmt++) {
|
|
|
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
|
|
|
|
if (!desc)
|
|
|
|
break;
|
|
|
|
flags = desc->flags;
|
|
|
|
if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL) &&
|
|
|
|
!(desc->flags & AV_PIX_FMT_FLAG_PLANAR) &&
|
|
|
|
(desc->log2_chroma_w || desc->log2_chroma_h))
|
|
|
|
flags |= FF_PIX_FMT_FLAG_SW_FLAT_SUB;
|
|
|
|
if ((flags & (want | rej)) != want)
|
|
|
|
continue;
|
|
|
|
if (formats)
|
|
|
|
formats->formats[nb_formats] = fmt;
|
|
|
|
nb_formats++;
|
|
|
|
}
|
|
|
|
if (formats) {
|
|
|
|
av_assert0(formats->nb_formats == nb_formats);
|
|
|
|
*rfmts = formats;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
formats = av_mallocz(sizeof(*formats));
|
|
|
|
if (!formats)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
formats->nb_formats = nb_formats;
|
|
|
|
if (nb_formats) {
|
|
|
|
formats->formats = av_malloc_array(nb_formats, sizeof(*formats->formats));
|
|
|
|
if (!formats->formats) {
|
|
|
|
av_freep(&formats);
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 14:59:30 +03:00
|
|
|
AVFilterFormats *ff_planar_sample_fmts(void)
|
|
|
|
{
|
|
|
|
AVFilterFormats *ret = NULL;
|
|
|
|
int fmt;
|
|
|
|
|
2014-05-27 19:22:09 +03:00
|
|
|
for (fmt = 0; av_get_bytes_per_sample(fmt)>0; fmt++)
|
2012-05-30 14:59:30 +03:00
|
|
|
if (av_sample_fmt_is_planar(fmt))
|
2015-10-05 05:39:25 +02:00
|
|
|
if (ff_add_format(&ret, fmt) < 0)
|
|
|
|
return NULL;
|
2012-05-30 14:59:30 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterFormats *ff_all_samplerates(void)
|
2008-02-10 20:02:11 +02:00
|
|
|
{
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterFormats *ret = av_mallocz(sizeof(*ret));
|
|
|
|
return ret;
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterChannelLayouts *ff_all_channel_layouts(void)
|
2008-02-10 20:03:18 +02:00
|
|
|
{
|
2012-05-06 07:59:06 +03:00
|
|
|
AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
|
2013-01-02 17:11:30 +03:00
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
ret->all_layouts = 1;
|
2012-05-06 07:59:06 +03:00
|
|
|
return ret;
|
2008-02-10 20:03:18 +02:00
|
|
|
}
|
|
|
|
|
2012-12-26 18:46:43 +03:00
|
|
|
AVFilterChannelLayouts *ff_all_channel_counts(void)
|
|
|
|
{
|
|
|
|
AVFilterChannelLayouts *ret = av_mallocz(sizeof(*ret));
|
|
|
|
if (!ret)
|
|
|
|
return NULL;
|
|
|
|
ret->all_layouts = ret->all_counts = 1;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-05 05:39:25 +02:00
|
|
|
#define FORMATS_REF(f, ref, unref_fn) \
|
2015-03-15 14:24:22 +02:00
|
|
|
void *tmp; \
|
|
|
|
\
|
2015-10-05 05:39:25 +02:00
|
|
|
if (!f || !ref) \
|
|
|
|
return AVERROR(ENOMEM); \
|
2015-03-15 14:24:22 +02:00
|
|
|
\
|
|
|
|
tmp = av_realloc_array(f->refs, sizeof(*f->refs), f->refcount + 1); \
|
2015-10-05 05:39:25 +02:00
|
|
|
if (!tmp) { \
|
|
|
|
unref_fn(&f); \
|
2015-03-14 22:21:49 +02:00
|
|
|
return AVERROR(ENOMEM); \
|
2015-10-05 05:39:25 +02:00
|
|
|
} \
|
2015-03-14 22:21:49 +02:00
|
|
|
f->refs = tmp; \
|
|
|
|
f->refs[f->refcount++] = ref; \
|
|
|
|
*ref = f; \
|
|
|
|
return 0
|
|
|
|
|
|
|
|
int ff_channel_layouts_ref(AVFilterChannelLayouts *f, AVFilterChannelLayouts **ref)
|
2008-02-10 20:02:11 +02:00
|
|
|
{
|
2015-10-05 05:39:25 +02:00
|
|
|
FORMATS_REF(f, ref, ff_channel_layouts_unref);
|
2012-05-06 07:59:06 +03:00
|
|
|
}
|
2010-01-08 10:19:18 +02:00
|
|
|
|
2015-03-14 22:21:49 +02:00
|
|
|
int ff_formats_ref(AVFilterFormats *f, AVFilterFormats **ref)
|
2008-02-10 20:02:11 +02:00
|
|
|
{
|
2015-10-05 05:39:25 +02:00
|
|
|
FORMATS_REF(f, ref, ff_formats_unref);
|
2012-05-06 07:59:06 +03:00
|
|
|
}
|
2010-01-08 10:19:18 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
#define FIND_REF_INDEX(ref, idx) \
|
|
|
|
do { \
|
|
|
|
int i; \
|
|
|
|
for (i = 0; i < (*ref)->refcount; i ++) \
|
|
|
|
if((*ref)->refs[i] == ref) { \
|
|
|
|
idx = i; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define FORMATS_UNREF(ref, list) \
|
|
|
|
do { \
|
|
|
|
int idx = -1; \
|
|
|
|
\
|
2019-10-07 17:26:59 +02:00
|
|
|
if (!ref || !*ref || !(*ref)->refs) \
|
2012-05-06 07:59:06 +03:00
|
|
|
return; \
|
|
|
|
\
|
|
|
|
FIND_REF_INDEX(ref, idx); \
|
|
|
|
\
|
|
|
|
if (idx >= 0) \
|
|
|
|
memmove((*ref)->refs + idx, (*ref)->refs + idx + 1, \
|
|
|
|
sizeof(*(*ref)->refs) * ((*ref)->refcount - idx - 1)); \
|
|
|
|
\
|
|
|
|
if(!--(*ref)->refcount) { \
|
|
|
|
av_free((*ref)->list); \
|
|
|
|
av_free((*ref)->refs); \
|
|
|
|
av_free(*ref); \
|
|
|
|
} \
|
|
|
|
*ref = NULL; \
|
|
|
|
} while (0)
|
2010-01-08 00:59:22 +02:00
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
void ff_formats_unref(AVFilterFormats **ref)
|
2012-05-06 07:59:06 +03:00
|
|
|
{
|
|
|
|
FORMATS_UNREF(ref, formats);
|
|
|
|
}
|
2008-02-10 20:03:18 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
void ff_channel_layouts_unref(AVFilterChannelLayouts **ref)
|
|
|
|
{
|
|
|
|
FORMATS_UNREF(ref, channel_layouts);
|
|
|
|
}
|
2008-02-10 20:03:18 +02:00
|
|
|
|
2012-05-06 07:59:06 +03:00
|
|
|
#define FORMATS_CHANGEREF(oldref, newref) \
|
|
|
|
do { \
|
|
|
|
int idx = -1; \
|
|
|
|
\
|
|
|
|
FIND_REF_INDEX(oldref, idx); \
|
|
|
|
\
|
|
|
|
if (idx >= 0) { \
|
|
|
|
(*oldref)->refs[idx] = newref; \
|
|
|
|
*newref = *oldref; \
|
|
|
|
*oldref = NULL; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
void ff_channel_layouts_changeref(AVFilterChannelLayouts **oldref,
|
|
|
|
AVFilterChannelLayouts **newref)
|
|
|
|
{
|
|
|
|
FORMATS_CHANGEREF(oldref, newref);
|
2008-02-10 20:02:11 +02:00
|
|
|
}
|
|
|
|
|
2012-05-30 11:12:55 +03:00
|
|
|
void ff_formats_changeref(AVFilterFormats **oldref, AVFilterFormats **newref)
|
2008-02-10 20:04:32 +02:00
|
|
|
{
|
2012-05-06 07:59:06 +03:00
|
|
|
FORMATS_CHANGEREF(oldref, newref);
|
2008-02-10 20:04:32 +02:00
|
|
|
}
|
2012-05-10 08:41:16 +03:00
|
|
|
|
2015-10-05 05:39:25 +02:00
|
|
|
#define SET_COMMON_FORMATS(ctx, fmts, in_fmts, out_fmts, ref_fn, unref_fn, list) \
|
2012-05-10 08:41:16 +03:00
|
|
|
int count = 0, i; \
|
|
|
|
\
|
2015-03-15 14:24:22 +02:00
|
|
|
if (!fmts) \
|
2015-10-05 05:39:25 +02:00
|
|
|
return AVERROR(ENOMEM); \
|
2015-03-15 14:24:22 +02:00
|
|
|
\
|
2012-06-12 22:25:10 +03:00
|
|
|
for (i = 0; i < ctx->nb_inputs; i++) { \
|
2012-06-05 18:02:43 +03:00
|
|
|
if (ctx->inputs[i] && !ctx->inputs[i]->out_fmts) { \
|
2015-10-05 05:39:25 +02:00
|
|
|
int ret = ref_fn(fmts, &ctx->inputs[i]->out_fmts); \
|
|
|
|
if (ret < 0) { \
|
|
|
|
unref_fn(&fmts); \
|
2019-10-07 17:26:59 +02:00
|
|
|
if (fmts) \
|
|
|
|
av_freep(&fmts->list); \
|
2016-01-02 22:05:40 +02:00
|
|
|
av_freep(&fmts); \
|
2015-03-15 14:24:22 +02:00
|
|
|
return ret; \
|
2015-10-05 05:39:25 +02:00
|
|
|
} \
|
2012-05-10 08:41:16 +03:00
|
|
|
count++; \
|
|
|
|
} \
|
|
|
|
} \
|
2012-06-12 22:25:10 +03:00
|
|
|
for (i = 0; i < ctx->nb_outputs; i++) { \
|
2012-06-05 18:02:43 +03:00
|
|
|
if (ctx->outputs[i] && !ctx->outputs[i]->in_fmts) { \
|
2015-10-05 05:39:25 +02:00
|
|
|
int ret = ref_fn(fmts, &ctx->outputs[i]->in_fmts); \
|
|
|
|
if (ret < 0) { \
|
|
|
|
unref_fn(&fmts); \
|
2019-10-07 17:26:59 +02:00
|
|
|
if (fmts) \
|
|
|
|
av_freep(&fmts->list); \
|
2016-01-02 22:05:40 +02:00
|
|
|
av_freep(&fmts); \
|
2015-03-15 14:24:22 +02:00
|
|
|
return ret; \
|
2015-10-05 05:39:25 +02:00
|
|
|
} \
|
2012-05-10 08:41:16 +03:00
|
|
|
count++; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (!count) { \
|
|
|
|
av_freep(&fmts->list); \
|
|
|
|
av_freep(&fmts->refs); \
|
|
|
|
av_freep(&fmts); \
|
|
|
|
} \
|
2015-03-15 14:24:22 +02:00
|
|
|
\
|
|
|
|
return 0;
|
2012-05-10 08:41:16 +03:00
|
|
|
|
2015-03-15 14:24:22 +02:00
|
|
|
int ff_set_common_channel_layouts(AVFilterContext *ctx,
|
|
|
|
AVFilterChannelLayouts *layouts)
|
2012-05-10 08:41:16 +03:00
|
|
|
{
|
|
|
|
SET_COMMON_FORMATS(ctx, layouts, in_channel_layouts, out_channel_layouts,
|
2015-10-05 05:39:25 +02:00
|
|
|
ff_channel_layouts_ref, ff_channel_layouts_unref, channel_layouts);
|
2012-05-10 08:41:16 +03:00
|
|
|
}
|
|
|
|
|
2015-03-15 14:24:22 +02:00
|
|
|
int ff_set_common_samplerates(AVFilterContext *ctx,
|
|
|
|
AVFilterFormats *samplerates)
|
2012-05-10 08:41:16 +03:00
|
|
|
{
|
|
|
|
SET_COMMON_FORMATS(ctx, samplerates, in_samplerates, out_samplerates,
|
2015-10-05 05:39:25 +02:00
|
|
|
ff_formats_ref, ff_formats_unref, formats);
|
2012-05-10 08:41:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-03-15 14:24:22 +02:00
|
|
|
int ff_set_common_formats(AVFilterContext *ctx, AVFilterFormats *formats)
|
2012-05-10 08:41:16 +03:00
|
|
|
{
|
|
|
|
SET_COMMON_FORMATS(ctx, formats, in_formats, out_formats,
|
2015-10-05 05:39:25 +02:00
|
|
|
ff_formats_ref, ff_formats_unref, formats);
|
2012-05-10 08:41:16 +03:00
|
|
|
}
|
2008-02-10 20:04:32 +02:00
|
|
|
|
2012-12-26 18:47:18 +03:00
|
|
|
static int default_query_formats_common(AVFilterContext *ctx,
|
|
|
|
AVFilterChannelLayouts *(layouts)(void))
|
2012-05-10 08:41:16 +03:00
|
|
|
{
|
2015-03-15 14:24:22 +02:00
|
|
|
int ret;
|
2012-05-10 08:41:16 +03:00
|
|
|
enum AVMediaType type = ctx->inputs && ctx->inputs [0] ? ctx->inputs [0]->type :
|
|
|
|
ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
|
|
|
|
AVMEDIA_TYPE_VIDEO;
|
|
|
|
|
2015-03-15 14:24:22 +02:00
|
|
|
ret = ff_set_common_formats(ctx, ff_all_formats(type));
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2012-05-10 08:41:16 +03:00
|
|
|
if (type == AVMEDIA_TYPE_AUDIO) {
|
2015-03-15 14:24:22 +02:00
|
|
|
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;
|
2008-02-10 20:04:32 +02:00
|
|
|
}
|
2012-05-10 08:41:16 +03:00
|
|
|
|
|
|
|
return 0;
|
2008-02-10 20:04:32 +02:00
|
|
|
}
|
|
|
|
|
2012-12-26 18:47:18 +03:00
|
|
|
int ff_default_query_formats(AVFilterContext *ctx)
|
|
|
|
{
|
2016-11-22 01:40:50 +02:00
|
|
|
return default_query_formats_common(ctx, ff_all_channel_counts);
|
2012-12-26 18:47:18 +03:00
|
|
|
}
|
|
|
|
|
2016-11-22 01:40:50 +02:00
|
|
|
int ff_query_formats_all_layouts(AVFilterContext *ctx)
|
2012-12-26 18:47:18 +03:00
|
|
|
{
|
2016-11-22 01:40:50 +02:00
|
|
|
return default_query_formats_common(ctx, ff_all_channel_layouts);
|
2012-12-26 18:47:18 +03:00
|
|
|
}
|
|
|
|
|
2011-08-04 12:28:14 +03:00
|
|
|
/* internal functions for parsing audio format arguments */
|
|
|
|
|
2012-10-08 21:54:00 +03:00
|
|
|
int ff_parse_pixel_format(enum AVPixelFormat *ret, const char *arg, void *log_ctx)
|
2011-08-22 15:56:23 +03:00
|
|
|
{
|
|
|
|
char *tail;
|
|
|
|
int pix_fmt = av_get_pix_fmt(arg);
|
2012-10-08 21:54:00 +03:00
|
|
|
if (pix_fmt == AV_PIX_FMT_NONE) {
|
2011-08-22 15:56:23 +03:00
|
|
|
pix_fmt = strtol(arg, &tail, 0);
|
2014-05-27 18:43:03 +03:00
|
|
|
if (*tail || !av_pix_fmt_desc_get(pix_fmt)) {
|
2011-08-22 15:56:23 +03:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Invalid pixel format '%s'\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ret = pix_fmt;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-04 12:28:14 +03:00
|
|
|
int ff_parse_sample_format(int *ret, const char *arg, void *log_ctx)
|
|
|
|
{
|
|
|
|
char *tail;
|
|
|
|
int sfmt = av_get_sample_fmt(arg);
|
|
|
|
if (sfmt == AV_SAMPLE_FMT_NONE) {
|
|
|
|
sfmt = strtol(arg, &tail, 0);
|
2014-05-27 19:22:09 +03:00
|
|
|
if (*tail || av_get_bytes_per_sample(sfmt)<=0) {
|
2011-08-04 12:28:14 +03:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Invalid sample format '%s'\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*ret = sfmt;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-17 03:37:13 +03:00
|
|
|
int ff_parse_time_base(AVRational *ret, const char *arg, void *log_ctx)
|
|
|
|
{
|
|
|
|
AVRational r;
|
|
|
|
if(av_parse_ratio(&r, arg, INT_MAX, 0, log_ctx) < 0 ||r.num<=0 ||r.den<=0) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Invalid time base '%s'\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
*ret = r;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-21 20:17:24 +03:00
|
|
|
int ff_parse_sample_rate(int *ret, const char *arg, void *log_ctx)
|
2011-08-04 12:28:14 +03:00
|
|
|
{
|
|
|
|
char *tail;
|
|
|
|
double srate = av_strtod(arg, &tail);
|
2011-08-21 20:17:24 +03:00
|
|
|
if (*tail || srate < 1 || (int)srate != srate || srate > INT_MAX) {
|
2011-08-04 12:28:14 +03:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Invalid sample rate '%s'\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
|
|
|
}
|
|
|
|
*ret = srate;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-25 16:07:40 +03:00
|
|
|
int ff_parse_channel_layout(int64_t *ret, int *nret, const char *arg,
|
|
|
|
void *log_ctx)
|
2011-08-04 12:28:14 +03:00
|
|
|
{
|
2015-06-20 18:52:50 +02:00
|
|
|
int64_t chlayout;
|
2016-12-26 03:03:37 +02:00
|
|
|
int nb_channels;
|
|
|
|
|
|
|
|
if (av_get_extended_channel_layout(arg, &chlayout, &nb_channels) < 0) {
|
2018-01-06 23:04:21 +02:00
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Invalid channel layout '%s'\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
2016-12-26 03:03:37 +02:00
|
|
|
}
|
|
|
|
if (!chlayout && !nret) {
|
|
|
|
av_log(log_ctx, AV_LOG_ERROR, "Unknown channel layout '%s' is not supported.\n", arg);
|
|
|
|
return AVERROR(EINVAL);
|
2011-08-04 12:28:14 +03:00
|
|
|
}
|
|
|
|
*ret = chlayout;
|
2013-10-25 16:07:40 +03:00
|
|
|
if (nret)
|
2016-12-26 03:03:37 +02:00
|
|
|
*nret = nb_channels;
|
|
|
|
|
2011-08-04 12:28:14 +03:00
|
|
|
return 0;
|
|
|
|
}
|