diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-20 22:47:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-20 22:48:58 +0100 |
commit | 1ec295a5c52bfe9a604bfb2a74041672db058324 (patch) | |
tree | 29e2e322c3f58fc57b72e63223d072e0e670d4fd /libavcodec | |
parent | 4d216420bed9d02cf0989d1e986247c1cd2f36c4 (diff) | |
parent | 1b1094a19d9e41baf3253c83841f9e5343cecbd0 (diff) | |
download | ffmpeg-1ec295a5c52bfe9a604bfb2a74041672db058324.tar.gz |
Merge commit '1b1094a19d9e41baf3253c83841f9e5343cecbd0'
* commit '1b1094a19d9e41baf3253c83841f9e5343cecbd0':
vdpau: switch ff_vdpau_get_surface_id from Picture to AVFrame
Conflicts:
libavcodec/vdpau_internal.h
libavcodec/vdpau_vc1.c
See: 2a37e560dccb81328f610c51e74ce6cc53f1a5c7
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vdpau_internal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/vdpau_internal.h b/libavcodec/vdpau_internal.h index a7b401350c..604298c877 100644 --- a/libavcodec/vdpau_internal.h +++ b/libavcodec/vdpau_internal.h @@ -36,10 +36,10 @@ #include "mpegvideo.h" #include "version.h" -/** Extract VdpVideoSurface from a Picture */ -static inline uintptr_t ff_vdpau_get_surface_id(AVFrame *frm) +/** Extract VdpVideoSurface from an AVFrame */ +static inline uintptr_t ff_vdpau_get_surface_id(AVFrame *pic) { - return (uintptr_t)frm->data[3]; + return (uintptr_t)pic->data[3]; } #if CONFIG_VDPAU |