diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-08 07:50:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-08 07:36:01 +0100 |
commit | ad0c9f2d5d81e22207c6ccecc426bf7306acc327 (patch) | |
tree | 478b27e382f7a3e26e1a01c39cef92929cfa1f09 /libavutil/version.h | |
parent | 1a5e9130162b8adc898e5f6aea82b6372d1e4e6c (diff) | |
download | ffmpeg-ad0c9f2d5d81e22207c6ccecc426bf7306acc327.tar.gz |
lavc: move AVFrame.hwaccel_picture_private to Picture.
This field is private and should not be present in a public struct. It
is only used in DXVA with mpegvideo-based decoders currently.
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index 38b11a408d..d519b50c78 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -82,7 +82,9 @@ #ifndef FF_API_LLS_PRIVATE #define FF_API_LLS_PRIVATE (LIBAVUTIL_VERSION_MAJOR < 53) #endif - +#ifndef FF_API_AVFRAME_LAVC +#define FF_API_AVFRAME_LAVC (LIBAVUTIL_VERSION_MAJOR < 53) +#endif /** * @} |