Commit af46ca73 authored by Michael Niedermayer's avatar Michael Niedermayer

msmpeg4: replace 999999 by INT_MAX and initial by a valid index.

Fixes Ticket990
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a3c4371f
......@@ -282,8 +282,8 @@ av_cold void ff_msmpeg4_encode_init(MpegEncContext *s)
static void find_best_tables(MpegEncContext * s)
{
int i;
int best =-1, best_size =9999999;
int chroma_best=-1, best_chroma_size=9999999;
int best = 0, best_size = INT_MAX;
int chroma_best = 0, best_chroma_size = INT_MAX;
for(i=0; i<3; i++){
int level;
......
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