Commit eb606e9d authored by nickols_k's avatar nickols_k

Applied patch of Felix Buenemann


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@736 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d17a7c9a
......@@ -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
......
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