mirror of https://git.ffmpeg.org/ffmpeg.git
Rename remaining occurrences of SAMPLE_FMT_* to AV_SAMPLE_FMT_*
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 151595fe2e
)
This commit is contained in:
parent
4d9c044d47
commit
7cb5258483
|
@ -89,7 +89,7 @@ static av_cold int amrwb_decode_init(AVCodecContext *avctx)
|
|||
AMRWBContext *ctx = avctx->priv_data;
|
||||
int i;
|
||||
|
||||
avctx->sample_fmt = SAMPLE_FMT_FLT;
|
||||
avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
|
||||
|
||||
av_lfg_init(&ctx->prng, 1);
|
||||
|
||||
|
@ -1233,5 +1233,5 @@ AVCodec ff_amrwb_decoder = {
|
|||
.init = amrwb_decode_init,
|
||||
.decode = amrwb_decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Adaptive Multi-Rate WideBand"),
|
||||
.sample_fmts = (enum AVSampleFormat[]){SAMPLE_FMT_FLT,SAMPLE_FMT_NONE},
|
||||
.sample_fmts = (enum AVSampleFormat[]){AV_SAMPLE_FMT_FLT,AV_SAMPLE_FMT_NONE},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue