* internal api header.
*/
+#ifndef POSTPROCESS_INTERNAL_H
+#define POSTPROCESS_INTERNAL_H
+
#include "avutil.h"
+#include "postprocess.h"
#define V_DEBLOCK 0x01
#define H_DEBLOCK 0x02
# define PIC
#endif
-//use if u want a faster postprocessing code
-//cant differentiate between chroma & luma filters (both on or both off)
-//obviosly the -pp option at the commandline has no effect except turning the here selected
+//use if you want a faster postprocessing code
+//cannot differentiate between chroma & luma filters (both on or both off)
+//obviously the -pp option on the command line has no effect except turning the here selected
//filters on
//#define COMPILE_TIME_MODE 0x77
* postprocess context.
*/
typedef struct PPContext{
+ /**
+ * info on struct for av_log
+ */
+ AVClass *av_class;
+
uint8_t *tempBlocks; ///<used for the horizontal code
/**
memcpy(dest+(lines-1)*stride, src+(lines-1)*stride, -lines*stride);
}
}
+
+#endif // POSTPROCESS_INTERNAL_H