comparison flvdec.c @ 10790:145b62a1de1c libavcodec

flv.h should ideally be included in flvdec.c
author michael
date Thu, 07 Jan 2010 06:20:57 +0000
parents 0c8f9288b5e4
children d0657e337f91
comparison
equal deleted inserted replaced
10789:edaaa3fa540c 10790:145b62a1de1c
16 * License along with FFmpeg; if not, write to the Free Software 16 * License along with FFmpeg; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19
20 #include "mpegvideo.h" 20 #include "mpegvideo.h"
21 #include "flv.h"
21 22
22 void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){ 23 void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){
23 int is11 = get_bits1(gb); 24 int is11 = get_bits1(gb);
24 *last = get_bits1(gb); 25 *last = get_bits1(gb);
25 *run = get_bits(gb, 6); 26 *run = get_bits(gb, 6);