diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2014-10-25 11:19:21 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-25 16:54:12 +0200 |
commit | 80b29c2d0c0bade061f39672fb64924ea6bf3213 (patch) | |
tree | 24ae5885cba2109cc00b533e526c21774182ce29 /libavcodec/dv.c | |
parent | eacf2e8eb35c3a18cfeddd2aa0ac787949dc7f94 (diff) | |
download | ffmpeg-80b29c2d0c0bade061f39672fb64924ea6bf3213.tar.gz |
dv: use smaller type for weight tables
Reviewed-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index e1e5dd913f..1f0486107a 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -206,7 +206,7 @@ int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const AVDVProfile *d) factor1 = &ctx->idct_factor[0]; factor2 = &ctx->idct_factor[DV_PROFILE_IS_HD(d) ? 4096 : 2816]; if (DV_PROFILE_IS_HD(d)) { - const int *iweight1, *iweight2; + const uint16_t *iweight1, *iweight2; if (d->height == 720) { iweight1 = &ff_dv_iweight_720_y[0]; iweight2 = &ff_dv_iweight_720_c[0]; @@ -223,7 +223,7 @@ int ff_dv_init_dynamic_tables(DVVideoContext *ctx, const AVDVProfile *d) } } } else { - const int *iweight1 = &ff_dv_iweight_88[0]; + const uint16_t *iweight1 = &ff_dv_iweight_88[0]; for (j = 0; j < 2; j++, iweight1 = &ff_dv_iweight_248[0]) { for (s = 0; s < 22; s++) { for (i = c = 0; c < 4; c++) { |