vc1: use ff_parse_close

It works as long as ParseContext is the first member of the private struct

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Rafaël Carré 2012-02-08 17:46:51 -05:00 committed by Diego Biurrun
parent 07554ace70
commit 797639dcfd
1 changed files with 1 additions and 1 deletions

View File

@ -196,6 +196,6 @@ AVCodecParser ff_vc1_parser = {
.priv_data_size = sizeof(VC1ParseContext),
.parser_init = vc1_parse_init,
.parser_parse = vc1_parse,
.parser_close = ff_parse1_close,
.parser_close = ff_parse_close,
.split = vc1_split,
};