mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-08 19:07:09 +00:00
0.1l
Originally committed as revision 1215 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
152ba68cc9
commit
0626afe9b2
@ -25,8 +25,8 @@
|
|||||||
#include "avcodec.h"
|
#include "avcodec.h"
|
||||||
#include "dsputil.h"
|
#include "dsputil.h"
|
||||||
|
|
||||||
#ifndef MAX_INT64
|
#ifndef INT64_MAX
|
||||||
#define MAX_INT64 9223372036854775807LL
|
#define INT64_MAX 9223372036854775807LL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VLC_BITS 11
|
#define VLC_BITS 11
|
||||||
@ -237,7 +237,7 @@ static void generate_len_table(uint8_t *dst, uint64_t *stats, int size){
|
|||||||
|
|
||||||
counts[next]= min1 + min2;
|
counts[next]= min1 + min2;
|
||||||
counts[min1_i]=
|
counts[min1_i]=
|
||||||
counts[min2_i]= MAX_INT64;
|
counts[min2_i]= INT64_MAX;
|
||||||
up[min1_i]=
|
up[min1_i]=
|
||||||
up[min2_i]= next;
|
up[min2_i]= next;
|
||||||
up[next]= -1;
|
up[next]= -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user