diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-10 10:16:36 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2008-01-10 10:16:36 +0000 |
commit | 69fdc40db7db5982a0fdb1e13fa9208713345cab (patch) | |
tree | 98bdb2bf6ab6c1c15e76b600bba6280f1df12899 /libpostproc/postprocess.c | |
parent | 649537438eaf5592ce5a08623e0d9e85a484ff40 (diff) | |
download | ffmpeg-69fdc40db7db5982a0fdb1e13fa9208713345cab.tar.gz |
Make pp_help a constant array of characters to move it to .rodata.
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com
Originally committed as revision 11487 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r-- | libpostproc/postprocess.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 1e843422be..4890bf841a 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -694,7 +694,11 @@ static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int /* -pp Command line Help */ +#if LIBPOSTPROC_VERSION_INT < (52<<16) const char *const pp_help= +#else +const char pp_help[] = +#endif "Available postprocessing filters:\n" "Filters Options\n" "short long name short long option Description\n" |