diff options
author | James Almer <jamrial@gmail.com> | 2017-10-24 19:14:22 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-24 19:14:22 -0300 |
commit | 4e9dc52a9703f84a0e996263018745afa1118aa0 (patch) | |
tree | b57070b2e4193448dccc8be1343316aa21b5899e /libavutil/hwcontext.h | |
parent | c0683dce89eceaab8783b8b47dd2346afc0a9276 (diff) | |
parent | 1bd986ed4b0e95ded368a8eeb5c044853c090f9b (diff) | |
download | ffmpeg-4e9dc52a9703f84a0e996263018745afa1118aa0.tar.gz |
Merge commit '1bd986ed4b0e95ded368a8eeb5c044853c090f9b'
* commit '1bd986ed4b0e95ded368a8eeb5c044853c090f9b':
hwcontext: Move NONE to the be the first member of AVHWDeviceType
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/hwcontext.h')
-rw-r--r-- | libavutil/hwcontext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext.h b/libavutil/hwcontext.h index 03334e20e0..d20810422c 100644 --- a/libavutil/hwcontext.h +++ b/libavutil/hwcontext.h @@ -25,13 +25,13 @@ #include "pixfmt.h" enum AVHWDeviceType { + AV_HWDEVICE_TYPE_NONE, AV_HWDEVICE_TYPE_VDPAU, AV_HWDEVICE_TYPE_CUDA, AV_HWDEVICE_TYPE_VAAPI, AV_HWDEVICE_TYPE_DXVA2, AV_HWDEVICE_TYPE_QSV, AV_HWDEVICE_TYPE_VIDEOTOOLBOX, - AV_HWDEVICE_TYPE_NONE, AV_HWDEVICE_TYPE_D3D11VA, AV_HWDEVICE_TYPE_DRM, }; |