diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-08-27 19:21:00 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-08-28 07:37:06 +0200 |
commit | 7627c35a81241c98768d2d1f13d576591cac0b1c (patch) | |
tree | 896f9964bf31b23c8dd80f03c7dcc84bd4be20ab /libavcodec/vc1.h | |
parent | ae43c4c0c09fee63bc7ec9385b3fd381be7ba1d5 (diff) | |
download | ffmpeg-7627c35a81241c98768d2d1f13d576591cac0b1c.tar.gz |
vc1: export some functions
This is a preparatory step for the MSS2 decoder which needs to use
the WMV9 decoder to decode some kinds of frames.
From the patch by Alberto Delmás <adelmas@gmail.com>
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 5806b80f2f..fe21f2f6b7 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -451,4 +451,9 @@ int ff_vc1_parse_frame_header (VC1Context *v, GetBitContext *gb); int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext *gb); int ff_vc1_init_common(VC1Context *v); +av_cold int ff_vc1_decode_init_alloc_tables(VC1Context *v); +av_cold void ff_vc1_init_transposed_scantables(VC1Context *v); +av_cold int ff_vc1_decode_end(AVCodecContext *avctx); +void ff_vc1_decode_blocks(VC1Context *v); + #endif /* AVCODEC_VC1_H */ |