Browse Source

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

Fixes Ticket990

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
af46ca7356
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/msmpeg4.c

+ 2
- 2
libavcodec/msmpeg4.c View File

@@ -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;


Loading…
Cancel
Save