mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-04-01 22:49:21 +00:00
vf_colorspace: Forbid odd dimensions
This prevents writing past bounds. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
This commit is contained in:
parent
bda6f2937e
commit
afb84857bf
@ -5278,6 +5278,7 @@ colormatrix=bt601:smpte240m
|
|||||||
@section colorspace
|
@section colorspace
|
||||||
|
|
||||||
Convert colorspace, transfer characteristics or color primaries.
|
Convert colorspace, transfer characteristics or color primaries.
|
||||||
|
Input video needs to have an even size.
|
||||||
|
|
||||||
The filter accepts the following options:
|
The filter accepts the following options:
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ typedef struct ColorSpaceContext {
|
|||||||
int did_warn_range;
|
int did_warn_range;
|
||||||
} ColorSpaceContext;
|
} ColorSpaceContext;
|
||||||
|
|
||||||
// FIXME deal with odd width/heights (or just forbid it)
|
// FIXME deal with odd width/heights
|
||||||
// FIXME faster linearize/delinearize implementation (integer pow)
|
// FIXME faster linearize/delinearize implementation (integer pow)
|
||||||
// FIXME bt2020cl support (linearization between yuv/rgb step instead of between rgb/xyz)
|
// FIXME bt2020cl support (linearization between yuv/rgb step instead of between rgb/xyz)
|
||||||
// FIXME test that the values in (de)lin_lut don't exceed their container storage
|
// FIXME test that the values in (de)lin_lut don't exceed their container storage
|
||||||
@ -1031,8 +1031,15 @@ static int query_formats(AVFilterContext *ctx)
|
|||||||
|
|
||||||
static int config_props(AVFilterLink *outlink)
|
static int config_props(AVFilterLink *outlink)
|
||||||
{
|
{
|
||||||
|
AVFilterContext *ctx = outlink->dst;
|
||||||
AVFilterLink *inlink = outlink->src->inputs[0];
|
AVFilterLink *inlink = outlink->src->inputs[0];
|
||||||
|
|
||||||
|
if (inlink->w % 2 || inlink->h % 2) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR, "Invalid odd size (%dx%d)\n",
|
||||||
|
inlink->w, inlink->h);
|
||||||
|
return AVERROR_PATCHWELCOME;
|
||||||
|
}
|
||||||
|
|
||||||
outlink->w = inlink->w;
|
outlink->w = inlink->w;
|
||||||
outlink->h = inlink->h;
|
outlink->h = inlink->h;
|
||||||
outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
|
outlink->sample_aspect_ratio = inlink->sample_aspect_ratio;
|
||||||
|
Loading…
Reference in New Issue
Block a user