From 035320a52f44645da573a9f50b207c126ceab5c3 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 25 Sep 2011 14:56:40 +0200 Subject: [PATCH] dnxhdenc: remove unneeded entries from array. Signed-off-by: Michael Niedermayer --- libavcodec/dnxhdenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }