summaryrefslogtreecommitdiff
path: root/vp9/vp9_dx_iface.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-04-06 13:00:47 -0700
committerJames Zern <jzern@google.com>2023-04-06 15:37:40 -0700
commit12ab4af3aefb320996ace24083fd26e857f4c533 (patch)
tree487ed652a544a2462774971dece05ef9b14a9212 /vp9/vp9_dx_iface.c
parentbebc860915188e2fda3983c7d8504371beb2f518 (diff)
downloadlibvpx-12ab4af3aefb320996ace24083fd26e857f4c533.tar.gz
vp9_dx_iface: clear -Wshadow warnings
Bug: webm:1793 Change-Id: Ice6cd08f145e5813e24345d03e0913e5eda5289f
Diffstat (limited to 'vp9/vp9_dx_iface.c')
-rw-r--r--vp9/vp9_dx_iface.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c
index bdfe21793..20e71cc22 100644
--- a/vp9/vp9_dx_iface.c
+++ b/vp9/vp9_dx_iface.c
@@ -348,7 +348,7 @@ static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx,
// Initialize the decoder on the first frame.
if (ctx->pbi == NULL) {
- const vpx_codec_err_t res = init_decoder(ctx);
+ res = init_decoder(ctx);
if (res != VPX_CODEC_OK) return res;
}
@@ -367,7 +367,6 @@ static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx,
for (i = 0; i < frame_count; ++i) {
const uint8_t *data_start_copy = data_start;
const uint32_t frame_size = frame_sizes[i];
- vpx_codec_err_t res;
if (data_start < data || frame_size > (uint32_t)(data_end - data_start)) {
set_error_detail(ctx, "Invalid frame size in index");
return VPX_CODEC_CORRUPT_FRAME;
@@ -382,8 +381,7 @@ static vpx_codec_err_t decoder_decode(vpx_codec_alg_priv_t *ctx,
const uint8_t *const data_end = data + data_sz;
while (data_start < data_end) {
const uint32_t frame_size = (uint32_t)(data_end - data_start);
- const vpx_codec_err_t res =
- decode_one(ctx, &data_start, frame_size, user_priv, deadline);
+ res = decode_one(ctx, &data_start, frame_size, user_priv, deadline);
if (res != VPX_CODEC_OK) return res;
// Account for suboptimal termination by the encoder.