X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Faac_adtstoasc_bsf.c;h=3cb065ed5ec4043087fae2ec3e2200640f109ece;hb=e098fba5d9c9d52aaddd83e63dd910ff20b841d2;hp=2e14b1a0b67b9a50150e13cd7a6a015e3d3c8468;hpb=537a9e5cc28fe55deedc30953737cff124ac570f;p=ffmpeg diff --git a/libavcodec/aac_adtstoasc_bsf.c b/libavcodec/aac_adtstoasc_bsf.c index 2e14b1a0b67..3cb065ed5ec 100644 --- a/libavcodec/aac_adtstoasc_bsf.c +++ b/libavcodec/aac_adtstoasc_bsf.c @@ -55,7 +55,7 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc, if (show_bits(&gb, 12) != 0xfff) return 0; - if (ff_aac_parse_header(&gb, &hdr) < 0) { + if (avpriv_aac_parse_header(&gb, &hdr) < 0) { av_log(avctx, AV_LOG_ERROR, "Error parsing ADTS frame header!\n"); return -1; } @@ -78,7 +78,7 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc, return -1; } init_put_bits(&pb, pce_data, MAX_PCE_SIZE); - pce_size = ff_copy_pce_data(&pb, &gb)/8; + pce_size = avpriv_copy_pce_data(&pb, &gb)/8; flush_put_bits(&pb); buf_size -= get_bits_count(&gb)/8; buf += get_bits_count(&gb)/8;