diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-02 21:24:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-02 21:24:54 +0000 |
commit | 6c51fd3f2bc1dd9fd39e79fb24d6f3ed68372c2a (patch) | |
tree | 2f4e426167b8083898d144504a28cbc2ab4717ab /libpostproc/postprocess.h | |
parent | 4d65da424aad0d60d3e02e5c8f0d4944ac0b5b75 (diff) | |
download | ffmpeg-6c51fd3f2bc1dd9fd39e79fb24d6f3ed68372c2a.tar.gz |
const
Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.h')
-rw-r--r-- | libpostproc/postprocess.h | 6 |
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); |