[FFmpeg-cvslog] avutil/opt: make const tables static const

Michael Niedermayer git at videolan.org
Sat Aug 10 18:59:33 CEST 2013


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Aug 10 18:32:31 2013 +0200| [5fc5170c5575fbf80434b6c0a6efefe007eebf87] | committer: Michael Niedermayer

avutil/opt: make const tables static const

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5fc5170c5575fbf80434b6c0a6efefe007eebf87
---

 libavutil/opt.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavutil/opt.c b/libavutil/opt.c
index 8354a25..c035307 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -1506,7 +1506,7 @@ int main(void)
     printf("\nTesting av_set_options_string()\n");
     {
         TestContext test_ctx = { 0 };
-        const char *options[] = {
+        static const char * const options[] = {
             "",
             ":",
             "=",
@@ -1565,7 +1565,7 @@ int main(void)
     printf("\nTesting av_opt_set_from_string()\n");
     {
         TestContext test_ctx = { 0 };
-        const char *options[] = {
+        static const char * const options[] = {
             "",
             "5",
             "5:hello",
@@ -1576,7 +1576,7 @@ int main(void)
             " 5 : hello : size = pal ",
             "a_very_long_option_name_that_will_need_to_be_ellipsized_around_here=42"
         };
-        const char *shorthand[] = { "num", "string", NULL };
+        static const char * const shorthand[] = { "num", "string", NULL };
 
         test_ctx.class = &test_class;
         av_opt_set_defaults(&test_ctx);



More information about the ffmpeg-cvslog mailing list