summaryrefslogtreecommitdiff
path: root/libavcodec/nellymoserdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-01-12 09:26:11 +0100
committerAnton Khirnov <anton@khirnov.net>2012-01-12 18:18:23 +0100
commitd54f1e640790b9690cdb4f543f374016615ec000 (patch)
treeec3b80d053341a1bf44baf13c27bfdc0d73fa281 /libavcodec/nellymoserdec.c
parent0c71cc65266469253d531e8101a211ce8f26387c (diff)
nellymoserdec: SAMPLE_FMT -> AV_SAMPLE_FMT
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 7f585e4128..69c1b86f5e 100644
--- a/libavcodec/nellymoserdec.c
+++ b/libavcodec/nellymoserdec.c
@@ -187,7 +187,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 {