summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-01-03 02:45:05 +0000
committerMichael Niedermayer <michaelni@gmx.at>2012-01-03 04:00:52 +0100
commit69d766daa0fdb85410bcb926d2b9ace0aaba34d0 (patch)
tree2097893214537bbfe3ac4534e41a0f5b23f58f96 /libavcodec/nellymoserdec.c
parent7099f36578252935157be322bc9a34d0c861f83e (diff)
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.c2
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 {