diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 05:36:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-07 05:36:45 +0000 |
commit | a0b0d75368c603671379de73993404955ca96079 (patch) | |
tree | 4a802b5bdaefbc7382a47e8011184d3942492bb3 /libavcodec/flv.h | |
parent | eb52376915cb518220264962fdbcf22418e790bb (diff) | |
download | ffmpeg-a0b0d75368c603671379de73993404955ca96079.tar.gz |
Split flv decoding out.
Originally committed as revision 21051 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flv.h')
-rw-r--r-- | libavcodec/flv.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/flv.h b/libavcodec/flv.h index 848c92df98..e12b3b0268 100644 --- a/libavcodec/flv.h +++ b/libavcodec/flv.h @@ -23,5 +23,8 @@ void ff_flv_encode_picture_header(MpegEncContext * s, int picture_number); void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, int last); +int ff_flv_decode_picture_header(MpegEncContext *s); +void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last); + #endif |