diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2015-07-28 10:16:59 +0200 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2015-08-19 14:03:24 +0200 |
commit | 9f8e57efe4400ca86352277873792792279c3b15 (patch) | |
tree | 32c3b90e49eb7370b757832756ffec930b5ad8a1 /libavcodec/h263dec.c | |
parent | 6eecb91fbc275fec5225626c06d061e883ba37e0 (diff) | |
download | ffmpeg-9f8e57efe4400ca86352277873792792279c3b15.tar.gz |
vaapi: define a unique pixel format for VA-API (AV_PIX_FMT_VAAPI).
Deprecate older VA pixel formats (MOCO, IDCT) as it is now very unlikely
to ever be useful in the future. Only keep plain AV_PIX_FMT_VAAPI format
that is aliased to the older VLD variant.
This is an API change.
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 8f28a94191..c85ea9d6cd 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -720,7 +720,7 @@ frame_end: const enum AVPixelFormat ff_h263_hwaccel_pixfmt_list_420[] = { #if CONFIG_H263_VAAPI_HWACCEL || CONFIG_MPEG4_VAAPI_HWACCEL - AV_PIX_FMT_VAAPI_VLD, + AV_PIX_FMT_VAAPI, #endif #if CONFIG_H263_VDPAU_HWACCEL || CONFIG_MPEG4_VDPAU_HWACCEL AV_PIX_FMT_VDPAU, |