* internal api header.
*/
-#ifndef POSTPROCESS_INTERNAL_H
-#define POSTPROCESS_INTERNAL_H
+#ifndef FFMPEG_POSTPROCESS_INTERNAL_H
+#define FFMPEG_POSTPROCESS_INTERNAL_H
#include "avutil.h"
+#include "postprocess.h"
#define V_DEBLOCK 0x01
#define H_DEBLOCK 0x02
//filters on
//#define COMPILE_TIME_MODE 0x77
-#if 1
static inline int CLIP(int a){
if(a&256) return ((a)>>31)^(-1);
else return a;
}
-//#define CLIP(a) (((a)&256) ? ((a)>>31)^(-1) : (a))
-#elif 0
-#define CLIP(a) clip_tab[a]
-#else
-#define CLIP(a) (a)
-#endif
/**
* Postprocessng filter.
*/
/**
* info on struct for av_log
*/
- AVClass *av_class;
+ const AVClass *av_class;
uint8_t *tempBlocks; ///<used for the horizontal code
}
}
-#endif
+#endif /* FFMPEG_POSTPROCESS_INTERNAL_H */