Skip to content

Commit

Permalink
mpeg4vdpau: Fix priv data size.
Browse files Browse the repository at this point in the history
Signed-off-by: Reimar Döffinger <[email protected]>
  • Loading branch information
rdoeffinger committed Nov 1, 2014
1 parent e5054c8 commit 4635375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/mpeg4videodec.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4635375

Please sign in to comment.