]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/flv.h
aacsbr: Make the previous value of bs_num_env local to read_sbr_data().
[ffmpeg] / libavcodec / flv.h
index 848c92df988b752a41221050e280edc1f3e4e731..eb10f22608dca1eb9b15cd83d30f023840eab0e6 100644 (file)
 #ifndef AVCODEC_FLV_H
 #define AVCODEC_FLV_H
 
+#include "mpegvideo.h"
+#include "get_bits.h"
+#include "put_bits.h"
+
 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