Commit 58273890 authored by benoit's avatar benoit

Make pp_help a constant pointer to constant characters, moves it partially

in .rodata (the actual string) and partially in .data.relro (the pointer),
but doesn't change ABI.
Patch by Diego 'Flameeyes' Pettenò  flameeyes at gmail com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11390 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2defa5d4
...@@ -697,7 +697,7 @@ static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int ...@@ -697,7 +697,7 @@ static inline void postProcess(uint8_t src[], int srcStride, uint8_t dst[], int
/* -pp Command line Help /* -pp Command line Help
*/ */
char *pp_help= const char *const pp_help=
"Available postprocessing filters:\n" "Available postprocessing filters:\n"
"Filters Options\n" "Filters Options\n"
"short long name short long option Description\n" "short long name short long option Description\n"
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
typedef void pp_context_t; typedef void pp_context_t;
typedef void pp_mode_t; typedef void pp_mode_t;
extern char *pp_help; ///< a simple help text extern const char *const pp_help; ///< a simple help text
void pp_postprocess(uint8_t * src[3], int srcStride[3], void pp_postprocess(uint8_t * src[3], int srcStride[3],
uint8_t * dst[3], int dstStride[3], uint8_t * dst[3], int dstStride[3],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment