Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-09-25 16:56:40 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-09-25 16:56:40 +0400
commit035320a52f44645da573a9f50b207c126ceab5c3 (patch)
tree3d438fa12e7de72fce0fdd01afb07cbaec672fb0 /libavcodec/dnxhdenc.c
parentb8bad984ef45ddce8b356bc1bf15066f4134f10d (diff)
dnxhdenc: remove unneeded entries from array.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dnxhdenc.c')
-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];
}