diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 14:39:24 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-06 00:05:14 +0100 |
commit | 5af7daabc471b9b523561264c95e7b1fc258d0f8 (patch) | |
tree | aad6252488e2cb1f74ce21121b3aedbd6b478fc3 /libavfilter/vf_vflip.c | |
parent | d9010daa6ffc053a41f702dd4c3483eb745355a9 (diff) | |
download | ffmpeg-5af7daabc471b9b523561264c95e7b1fc258d0f8.tar.gz |
Mark AVFilterPad[] compound literals as const.
GCC 4.6.2 at least still seems to fail to put them in .rodata though,
see also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37303
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavfilter/vf_vflip.c')
-rw-r--r-- | libavfilter/vf_vflip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_vflip.c b/libavfilter/vf_vflip.c index e5cede81b5..b01d9f5f10 100644 --- a/libavfilter/vf_vflip.c +++ b/libavfilter/vf_vflip.c @@ -93,14 +93,14 @@ AVFilter avfilter_vf_vflip = { .priv_size = sizeof(FlipContext), - .inputs = (AVFilterPad[]) {{ .name = "default", + .inputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, .get_video_buffer = get_video_buffer, .start_frame = start_frame, .draw_slice = draw_slice, .config_props = config_input, }, { .name = NULL}}, - .outputs = (AVFilterPad[]) {{ .name = "default", + .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_VIDEO, }, { .name = NULL}}, }; |