Adding "const" to vpx_codec_iface_t is redundant
authorWan-Teh Chang <wtc@google.com>
Wed, 22 Nov 2023 23:38:04 +0000 (15:38 -0800)
committerWan-Teh Chang <wtc@google.com>
Wed, 22 Nov 2023 23:38:04 +0000 (15:38 -0800)
commit635eba3319cb6e20c2a72902b6fb3dd2fc8e93ef
tree24b5d49fdd957f6dccff56aaa8261613291b915a
parent741b8f6228984e888c99849d7675ea4132eaf268
Adding "const" to vpx_codec_iface_t is redundant

vpx_codec_iface_t is defined as follows:

  typedef const struct vpx_codec_iface vpx_codec_iface_t;

Since vpx_codec_iface_t is already a const struct, it is redundant to
add "const" to vpx_codec_iface_t.

Note: I think vpx_codec_iface_t should not have been defined as a const
struct, but it is too late to change that now.

Change-Id: Ifbd3f8a63c1d48e9169ff77fa0b505ea1e65519d
test/decode_api_test.cc
test/encode_api_test.cc
test/level_test.cc