]> granicus.if.org Git - libvpx/commitdiff
tools_common,VpxInterface: remove unneeded const
authorJames Zern <jzern@google.com>
Mon, 27 Feb 2023 21:48:47 +0000 (13:48 -0800)
committerJames Zern <jzern@google.com>
Mon, 27 Feb 2023 21:48:47 +0000 (13:48 -0800)
Change-Id: Ic309aab2ff1750bdbcc36e8aafe05d52930ba694

tools_common.h

index 3a266416e3c56f111afcbddb11b10704320cf2bf..9850907c155a5bbf085902d693b14295b312c140 100644 (file)
@@ -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);