summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-02 21:24:54 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-02 21:24:54 +0000
commit6c51fd3f2bc1dd9fd39e79fb24d6f3ed68372c2a (patch)
tree2f4e426167b8083898d144504a28cbc2ab4717ab /libpostproc/postprocess.h
parent4d65da424aad0d60d3e02e5c8f0d4944ac0b5b75 (diff)
const
Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.h')
-rw-r--r--libpostproc/postprocess.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h
index cd0bc89a9b..4782bac648 100644
--- a/libpostproc/postprocess.h
+++ b/libpostproc/postprocess.h
@@ -48,10 +48,10 @@ extern const char *const pp_help; ///< a simple help text
extern const char pp_help[]; ///< a simple help text
#endif
-void pp_postprocess(uint8_t * src[3], int srcStride[3],
- uint8_t * dst[3], int dstStride[3],
+void pp_postprocess(const uint8_t * src[3], const int srcStride[3],
+ uint8_t * dst[3], const int dstStride[3],
int horizontalSize, int verticalSize,
- QP_STORE_T *QP_store, int QP_stride,
+ const QP_STORE_T *QP_store, int QP_stride,
pp_mode_t *mode, pp_context_t *ppContext, int pict_type);