mlp: Convert to the new bitstream reader

This commit is contained in:
Alexandra Hájková 2016-04-10 20:47:11 +02:00 committed by Diego Biurrun
parent fa64aea12e
commit 00c72a1e01
3 changed files with 136 additions and 132 deletions

View file

@ -27,7 +27,7 @@
#ifndef AVCODEC_MLP_PARSER_H
#define AVCODEC_MLP_PARSER_H
#include "get_bits.h"
#include "bitstream.h"
typedef struct MLPHeaderInfo
{
@ -61,6 +61,6 @@ typedef struct MLPHeaderInfo
} MLPHeaderInfo;
int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, GetBitContext *gb);
int ff_mlp_read_major_sync(void *log, MLPHeaderInfo *mh, BitstreamContext *bc);
#endif /* AVCODEC_MLP_PARSER_H */