diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-01-03 02:45:05 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-03 04:00:52 +0100 |
commit | 69d766daa0fdb85410bcb926d2b9ace0aaba34d0 (patch) | |
tree | 2097893214537bbfe3ac4534e41a0f5b23f58f96 /libavcodec/nellymoserdec.c | |
parent | 7099f36578252935157be322bc9a34d0c861f83e (diff) | |
download | ffmpeg-69d766daa0fdb85410bcb926d2b9ace0aaba34d0.tar.gz |
lavc: replace rest of deprecated SAMPLE_FMT_* with AV_SAMPLE_FMT_*
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/nellymoserdec.c')
-rw-r--r-- | libavcodec/nellymoserdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 9e39097982..2a1ec5b4cd 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -192,7 +192,7 @@ static int decode_tag(AVCodecContext *avctx, void *data, samples_flt = (float *)s->frame.data[0]; for (i=0 ; i<blocks ; i++) { - if (avctx->sample_fmt == SAMPLE_FMT_FLT) { + if (avctx->sample_fmt == AV_SAMPLE_FMT_FLT) { nelly_decode_block(s, buf, samples_flt); samples_flt += NELLY_SAMPLES; } else { |