diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-19 09:28:45 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-23 14:14:39 +0200 |
commit | da22ba7df461c13bf0b0eabc953303803a285d91 (patch) | |
tree | a21067830f6440cad22a15cf67438704de8e53bf /libavcodec/vdpau_internal.h | |
parent | cc05a45d339d57214d647f5e01e91491c78a0b24 (diff) | |
download | ffmpeg-da22ba7df461c13bf0b0eabc953303803a285d91.tar.gz |
mpeg12: move full_pel from MpegEncContext to Mpeg1Context
It's MPEG-1 specific.
Diffstat (limited to 'libavcodec/vdpau_internal.h')
-rw-r--r-- | libavcodec/vdpau_internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vdpau_internal.h b/libavcodec/vdpau_internal.h index 673fd3349b..49f8e46a00 100644 --- a/libavcodec/vdpau_internal.h +++ b/libavcodec/vdpau_internal.h @@ -26,11 +26,12 @@ #include <stdint.h> #include "mpegvideo.h" +#include "mpeg12.h" void ff_vdpau_add_data_chunk(MpegEncContext *s, const uint8_t *buf, int buf_size); -void ff_vdpau_mpeg_picture_complete(MpegEncContext *s, const uint8_t *buf, +void ff_vdpau_mpeg_picture_complete(Mpeg1Context *s1, const uint8_t *buf, int buf_size, int slice_count); void ff_vdpau_h264_picture_start(MpegEncContext *s); |