comparison rangecoder.h @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents 1d83e9c34641
children c4a4495715dd
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
27 #ifndef FFMPEG_RANGECODER_H 27 #ifndef FFMPEG_RANGECODER_H
28 #define FFMPEG_RANGECODER_H 28 #define FFMPEG_RANGECODER_H
29 29
30 #include <stdint.h> 30 #include <stdint.h>
31 #include <assert.h> 31 #include <assert.h>
32 #include "common.h" 32 #include "libavutil/common.h"
33 33
34 typedef struct RangeCoder{ 34 typedef struct RangeCoder{
35 int low; 35 int low;
36 int range; 36 int range;
37 int outstanding_count; 37 int outstanding_count;