diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-01-09 22:22:40 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2009-01-09 22:22:40 +0000 |
commit | 7eb6ed78ea191c48279fc208f676807cfd3d732d (patch) | |
tree | 2c547e8ae8fda6000f780534ac8c80a162d6131b /libavcodec/h264.c | |
parent | fa50a0276f4e03828e1250f6524b61ef48ca9d15 (diff) | |
download | ffmpeg-7eb6ed78ea191c48279fc208f676807cfd3d732d.tar.gz |
Move VDPAU check, make future VDPAU patches smaller.
Originally committed as revision 16508 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 53cb83890d..a8bd0622a4 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -7647,7 +7647,7 @@ static int decode_frame(AVCodecContext *avctx, * past end by one (callers fault) and resync_mb_y != 0 * causes problems for the first MB line, too. */ - if (avctx->codec_id != CODEC_ID_H264_VDPAU && !FIELD_PICTURE) + if (!FIELD_PICTURE) ff_er_frame_end(s); MPV_frame_end(s); |