Commit 1f8b3632 authored by Mark Thompson's avatar Mark Thompson

ffmpeg_hw: Mark some strings as const

parent 909bcedc
...@@ -72,7 +72,7 @@ typedef struct HWAccel { ...@@ -72,7 +72,7 @@ typedef struct HWAccel {
} HWAccel; } HWAccel;
typedef struct HWDevice { typedef struct HWDevice {
char *name; const char *name;
enum AVHWDeviceType type; enum AVHWDeviceType type;
AVBufferRef *device_ref; AVBufferRef *device_ref;
} HWDevice; } HWDevice;
......
...@@ -99,7 +99,7 @@ int hw_device_init_from_string(const char *arg, HWDevice **dev_out) ...@@ -99,7 +99,7 @@ int hw_device_init_from_string(const char *arg, HWDevice **dev_out)
// -> av_hwdevice_ctx_create_derived() // -> av_hwdevice_ctx_create_derived()
AVDictionary *options = NULL; AVDictionary *options = NULL;
char *type_name = NULL, *name = NULL, *device = NULL; const char *type_name = NULL, *name = NULL, *device = NULL;
enum AVHWDeviceType type; enum AVHWDeviceType type;
HWDevice *dev, *src; HWDevice *dev, *src;
AVBufferRef *device_ref = NULL; AVBufferRef *device_ref = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment