Commit 90d239a4 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mpegvideo_enc: Add missing entry to non_linear_qscale table

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent d4a9e6c1
......@@ -172,7 +172,7 @@ static inline void update_qscale(MpegEncContext *s)
int bestdiff=INT_MAX;
int best = 1;
static const uint8_t non_linear_qscale[] = {
1,2,3,4,5,6,7,8,9,10,11,12,14,16,18,20,24,26,28
1,2,3,4,5,6,7,8,9,10,11,12,14,16,18,20,22,24,26,28
};
for (i = 0 ; i<FF_ARRAY_ELEMS(non_linear_qscale); i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment