diff options
author | Mark Thompson <sw@jkqxz.net> | 2020-11-08 18:51:15 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2020-11-08 18:54:42 +0000 |
commit | cd322794eecf1dd7d975ce3dcf1c18bbd8b91ad1 (patch) | |
tree | 2757dd5bfe003d81aec1fd21da64e673ee3ce003 /libavcodec/codec.h | |
parent | 8fbcc546b83e2ce242a0b75054ec2ca304a171df (diff) | |
download | ffmpeg-cd322794eecf1dd7d975ce3dcf1c18bbd8b91ad1.tar.gz |
lavc: Mark hw_config pointer arrays as const
They are read-only just like the HWConfig structures they point to.
Diffstat (limited to 'libavcodec/codec.h')
-rw-r--r-- | libavcodec/codec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/codec.h b/libavcodec/codec.h index dc8e12b3f0..0ccbf0eb19 100644 --- a/libavcodec/codec.h +++ b/libavcodec/codec.h @@ -320,7 +320,7 @@ typedef struct AVCodec { * * The user can only access this field via avcodec_get_hw_config(). */ - const struct AVCodecHWConfigInternal **hw_configs; + const struct AVCodecHWConfigInternal *const *hw_configs; /** * List of supported codec_tags, terminated by FF_CODEC_TAGS_END. |