[FFmpeg-cvslog] vc1: use ff_parse_close

Rafaël Carré git at videolan.org
Sat Feb 11 01:35:45 CET 2012


ffmpeg | branch: master | Rafaël Carré <funman at videolan.org> | Wed Feb  8 17:46:51 2012 -0500| [797639dcfdbd672d55e79c6a679cc1e58f863277] | committer: Diego Biurrun

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 at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=797639dcfdbd672d55e79c6a679cc1e58f863277
---

 libavcodec/vc1_parser.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/vc1_parser.c b/libavcodec/vc1_parser.c
index 0cc5ea0..55f97e1 100644
--- a/libavcodec/vc1_parser.c
+++ b/libavcodec/vc1_parser.c
@@ -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,
 };



More information about the ffmpeg-cvslog mailing list