aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-25 14:56:40 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-25 14:56:40 +0200
commit035320a52f44645da573a9f50b207c126ceab5c3 (patch)
tree3d438fa12e7de72fce0fdd01afb07cbaec672fb0
parentb8bad984ef45ddce8b356bc1bf15066f4134f10d (diff)
downloadffmpeg-035320a52f44645da573a9f50b207c126ceab5c3.tar.gz
dnxhdenc: remove unneeded entries from array.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/dnxhdenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 008742e49f..698237e59e 100644
--- a/libavcodec/dnxhdenc.c
+++ b/libavcodec/dnxhdenc.c
@@ -502,7 +502,7 @@ static av_always_inline void dnxhd_get_blocks(DNXHDEncContext *ctx, int mb_x, in
static av_always_inline int dnxhd_switch_matrix(DNXHDEncContext *ctx, int i)
{
- const static uint8_t component[8]={0,0,1,2,0,0,1,2,0,0,1,2,0,0,1,2};
+ const static uint8_t component[8]={0,0,1,2,0,0,1,2};
return component[i];
}