diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 13:34:01 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-02-03 13:38:10 +0000 |
commit | 151595fe2e06969a83654564a15feb5b9e8aa2c4 (patch) | |
tree | 893772e71985c81807a1fee36b7672b9f4569327 | |
parent | b2ed95ec48aceb21a9bb47af85d259ee52b8b7ea (diff) | |
download | ffmpeg-151595fe2e06969a83654564a15feb5b9e8aa2c4.tar.gz |
Rename remaining occurrences of SAMPLE_FMT_* to AV_SAMPLE_FMT_*
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/amrwbdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/amrwbdec.c b/libavcodec/amrwbdec.c index 1735c29ccc..90bf1d5fdf 100644 --- a/libavcodec/amrwbdec.c +++ b/libavcodec/amrwbdec.c @@ -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}, }; |