diff options
author | Mark Thompson <sw@jkqxz.net> | 2019-05-06 15:29:01 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2019-06-02 22:58:22 +0100 |
commit | 1f8b36329f20ea08eafe3823b1e1b3785d74768d (patch) | |
tree | f799abab4131ace3967c93ae902d9de6fd6b9729 /fftools/ffmpeg.h | |
parent | 909bcedc581aa03dd5e22ecb1d0cc3b52eba8c26 (diff) | |
download | ffmpeg-1f8b36329f20ea08eafe3823b1e1b3785d74768d.tar.gz |
ffmpeg_hw: Mark some strings as const
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index eb1eaf6363..7b6f802082 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -72,7 +72,7 @@ typedef struct HWAccel { } HWAccel; typedef struct HWDevice { - char *name; + const char *name; enum AVHWDeviceType type; AVBufferRef *device_ref; } HWDevice; |