Applied patch of Felix Buenemann

Originally committed as revision 736 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Nick Kurshev 2002-07-10 17:39:16 +00:00
parent cceabc8656
commit 63e0d4ac59

View File

@ -41,7 +41,7 @@ typedef struct vlc_code_s {
length :6;
} vlc_code_t;
#define MEDIAN(a,b,c) ((a < b != b >= c) ? b : ((a < c != c > b) ? c : a))
#define MEDIAN(a,b,c) (((a < b) != (b >= c)) ? b : (((a < c) != (c > b)) ? c : a))
#define SVQ1_BLOCK_SKIP 0
#define SVQ1_BLOCK_INTER 1