diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-11-01 13:01:38 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2014-11-01 15:43:52 +0100 |
commit | 46353759cb3c90ad8eb4af6526c236513d477296 (patch) | |
tree | 60c340cf7f8a1e27afd75ca376672d28ef98f8a8 /libavcodec | |
parent | e5054c8eed339283f352c70d191b35b3c3db227e (diff) | |
download | ffmpeg-46353759cb3c90ad8eb4af6526c236513d477296.tar.gz |
mpeg4vdpau: Fix priv data size.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/mpeg4videodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 47ac523699..846b691b88 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -2795,7 +2795,7 @@ AVCodec ff_mpeg4_vdpau_decoder = { .long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 (VDPAU)"), .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_MPEG4, - .priv_data_size = sizeof(MpegEncContext), + .priv_data_size = sizeof(Mpeg4DecContext), .init = decode_init, .close = ff_h263_decode_end, .decode = ff_h263_decode_frame, |