summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <[email protected]>2013-04-14 12:07:24 +0200
committerReinhard Tartler <[email protected]>2013-04-18 21:59:28 +0200
commit8f558c3e101859aec9adcb4b4b270ae1ef8f88b5 (patch)
tree5ebf02c271034263fa4d5167d3c735c766de36ed
parent5ebdfbe893c4509f5be6d950fe5f5f25bf52c397 (diff)
af_channelmap: sanity check input channel indices in all cases.
Fixes invalid reads from non-existing channels. CC:[email protected] (cherry picked from commit aafed1175df76603e94c99a7748968780d6548d2) Signed-off-by: Reinhard Tartler <[email protected]>
-rw-r--r--libavfilter/af_channelmap.c21
1 files changed, 15 insertions, 6 deletions
diff --git a/libavfilter/af_channelmap.c b/libavfilter/af_channelmap.c
index 8b72d5bc9f..c4b87daeef 100644
--- a/libavfilter/af_channelmap.c
+++ b/libavfilter/af_channelmap.c
@@ -362,23 +362,32 @@ static int channelmap_config_input(AVFilterLink *inlink)
{
AVFilterContext *ctx = inlink->dst;
ChannelMapContext *s = ctx->priv;
+ int nb_channels = av_get_channel_layout_nb_channels(inlink->channel_layout);
int i, err = 0;
const char *channel_name;
char layout_name[256];
- if (s->mode == MAP_PAIR_STR_INT || s->mode == MAP_PAIR_STR_STR) {
- for (i = 0; i < s->nch; i++) {
+ for (i = 0; i < s->nch; i++) {
+ if (s->mode == MAP_PAIR_STR_INT || s->mode == MAP_PAIR_STR_STR) {
s->map[i].in_channel_idx = av_get_channel_layout_channel_index(
inlink->channel_layout, s->map[i].in_channel);
- if (s->map[i].in_channel_idx < 0) {
+ }
+
+ if (s->map[i].in_channel_idx < 0 ||
+ s->map[i].in_channel_idx >= nb_channels) {
+ av_get_channel_layout_string(layout_name, sizeof(layout_name),
+ 0, inlink->channel_layout);
+ if (s->map[i].in_channel) {
channel_name = av_get_channel_name(s->map[i].in_channel);
- av_get_channel_layout_string(layout_name, sizeof(layout_name),
- 0, inlink->channel_layout);
av_log(ctx, AV_LOG_ERROR,
"input channel '%s' not available from input layout '%s'\n",
channel_name, layout_name);
- err = AVERROR(EINVAL);
+ } else {
+ av_log(ctx, AV_LOG_ERROR,
+ "input channel #%d not available from input layout '%s'\n",
+ s->map[i].in_channel_idx, layout_name);
}
+ err = AVERROR(EINVAL);
}
}