diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-03 08:42:02 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-03 08:42:02 +0000 |
commit | ca32534337022b5902c78e44f5f234e2e61d1673 (patch) | |
tree | 685f71b07ddddbddd5c203dd160405c0b3087f31 /libpostproc/postprocess.h | |
parent | a89889164cc784138ef184844ffa8abed394a497 (diff) | |
download | ffmpeg-ca32534337022b5902c78e44f5f234e2e61d1673.tar.gz |
Make pp_get_mode_by_name_and_quality accept a constant string.
Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com
Originally committed as revision 11381 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.h')
-rw-r--r-- | libpostproc/postprocess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index 1109b2047e..e3ac29e2e4 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -56,7 +56,7 @@ void pp_postprocess(uint8_t * src[3], int srcStride[3], * name is the string after "-pp" on the command line * quality is a number from 0 to PP_QUALITY_MAX */ -pp_mode_t *pp_get_mode_by_name_and_quality(char *name, int quality); +pp_mode_t *pp_get_mode_by_name_and_quality(const char *name, int quality); void pp_free_mode(pp_mode_t *mode); pp_context_t *pp_get_context(int width, int height, int flags); |