summaryrefslogtreecommitdiff
path: root/tools_common.h
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2023-02-27 13:48:47 -0800
committerJames Zern <jzern@google.com>2023-02-27 13:48:47 -0800
commit112945ac7b5784c05912d1955afd2c245ce5c51d (patch)
tree574c71398b699ec92b684b2d2935de23b687c29d /tools_common.h
parent0824c8c556ece012fc001bd11a1e26e0b5818a33 (diff)
downloadlibvpx-112945ac7b5784c05912d1955afd2c245ce5c51d.tar
libvpx-112945ac7b5784c05912d1955afd2c245ce5c51d.tar.gz
libvpx-112945ac7b5784c05912d1955afd2c245ce5c51d.tar.bz2
libvpx-112945ac7b5784c05912d1955afd2c245ce5c51d.zip
tools_common,VpxInterface: remove unneeded const
Change-Id: Ic309aab2ff1750bdbcc36e8aafe05d52930ba694
Diffstat (limited to 'tools_common.h')
-rw-r--r--tools_common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools_common.h b/tools_common.h
index 3a266416e..9850907c1 100644
--- a/tools_common.h
+++ b/tools_common.h
@@ -145,9 +145,9 @@ VPX_NO_RETURN void usage_exit(void);
int read_yuv_frame(struct VpxInputContext *input_ctx, vpx_image_t *yuv_frame);
typedef struct VpxInterface {
- const char *const name;
- const uint32_t fourcc;
- vpx_codec_iface_t *(*const codec_interface)(void);
+ const char *name;
+ uint32_t fourcc;
+ vpx_codec_iface_t *(*codec_interface)(void);
} VpxInterface;
int get_vpx_encoder_count(void);