]> git.sesse.net Git - ffmpeg/blobdiff - libpostproc/postprocess_internal.h
Tweak texi2pod.pl to make it print the various sections in the
[ffmpeg] / libpostproc / postprocess_internal.h
index c0116873f542c90fd7986534a5178f226c28c059..3bc51c49a4c83ff0dc9070eba5da37927d42eae8 100644 (file)
  */
 
 /**
- * @file postprocess_internal.h
+ * @file
  * internal api header.
  */
 
-#ifndef FFMPEG_POSTPROCESS_INTERNAL_H
-#define FFMPEG_POSTPROCESS_INTERNAL_H
+#ifndef POSTPROC_POSTPROCESS_INTERNAL_H
+#define POSTPROC_POSTPROCESS_INTERNAL_H
 
-#include "avutil.h"
+#include <string.h>
+#include "libavutil/avutil.h"
 #include "postprocess.h"
 
 #define V_DEBLOCK       0x01
@@ -130,8 +131,8 @@ typedef struct PPContext{
     DECLARE_ALIGNED(8, uint64_t, packedYScale);
 
     /** Temporal noise reducing buffers */
-    uint8_t *tempBlured[3];
-    int32_t *tempBluredPast[3];
+    uint8_t *tempBlurred[3];
+    int32_t *tempBlurredPast[3];
 
     /** Temporary buffers for handling the last row(s) */
     uint8_t *tempDst;
@@ -142,8 +143,8 @@ typedef struct PPContext{
     DECLARE_ALIGNED(8, uint64_t, pQPb);
     DECLARE_ALIGNED(8, uint64_t, pQPb2);
 
-    DECLARE_ALIGNED(8, uint64_t, mmxDcOffset[64]);
-    DECLARE_ALIGNED(8, uint64_t, mmxDcThreshold[64]);
+    DECLARE_ALIGNED(8, uint64_t, mmxDcOffset)[64];
+    DECLARE_ALIGNED(8, uint64_t, mmxDcThreshold)[64];
 
     QP_STORE_T *stdQPTable;       ///< used to fix MPEG2 style qscale
     QP_STORE_T *nonBQPTable;
@@ -174,4 +175,4 @@ static inline void linecpy(void *dest, const void *src, int lines, int stride) {
     }
 }
 
-#endif /* FFMPEG_POSTPROCESS_INTERNAL_H */
+#endif /* POSTPROC_POSTPROCESS_INTERNAL_H */