ac3_parser: add a public function for parsing the data required by the demuxer

Make the current semi-public avpriv_ac3_parse_header() private to lavc.

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Anton Khirnov 2017-03-30 16:56:28 +02:00 committed by Diego Biurrun
parent 193b091890
commit 50a1c66cf6
7 changed files with 96 additions and 28 deletions

View file

@ -36,7 +36,7 @@
#include "bswapdsp.h"
#include "internal.h"
#include "aac_ac3_parser.h"
#include "ac3_parser.h"
#include "ac3_parser_internal.h"
#include "ac3dec.h"
#include "ac3dec_data.h"
#include "kbdwin.h"
@ -270,7 +270,7 @@ static int parse_frame_header(AC3DecodeContext *s)
AC3HeaderInfo hdr;
int err;
err = avpriv_ac3_parse_header(&s->gbc, &hdr);
err = ff_ac3_parse_header(&s->gbc, &hdr);
if (err)
return err;