You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Applied patch of Felix Buenemann
Originally committed as revision 736 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -41,7 +41,7 @@ typedef struct vlc_code_s {
|
|||||||
length :6;
|
length :6;
|
||||||
} vlc_code_t;
|
} 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_SKIP 0
|
||||||
#define SVQ1_BLOCK_INTER 1
|
#define SVQ1_BLOCK_INTER 1
|
||||||
|
Reference in New Issue
Block a user