You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Rename remaining occurrences of SAMPLE_FMT_* to AV_SAMPLE_FMT_*
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
committed by
Mans Rullgard
parent
b2ed95ec48
commit
151595fe2e
@@ -89,7 +89,7 @@ static av_cold int amrwb_decode_init(AVCodecContext *avctx)
|
|||||||
AMRWBContext *ctx = avctx->priv_data;
|
AMRWBContext *ctx = avctx->priv_data;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
avctx->sample_fmt = SAMPLE_FMT_FLT;
|
avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
|
||||||
|
|
||||||
av_lfg_init(&ctx->prng, 1);
|
av_lfg_init(&ctx->prng, 1);
|
||||||
|
|
||||||
@@ -1233,5 +1233,5 @@ AVCodec ff_amrwb_decoder = {
|
|||||||
.init = amrwb_decode_init,
|
.init = amrwb_decode_init,
|
||||||
.decode = amrwb_decode_frame,
|
.decode = amrwb_decode_frame,
|
||||||
.long_name = NULL_IF_CONFIG_SMALL("Adaptive Multi-Rate WideBand"),
|
.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},
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user