Commit d54f1e64 authored by Anton Khirnov's avatar Anton Khirnov

nellymoserdec: SAMPLE_FMT -> AV_SAMPLE_FMT

parent 0c71cc65
...@@ -187,7 +187,7 @@ static int decode_tag(AVCodecContext *avctx, void *data, ...@@ -187,7 +187,7 @@ static int decode_tag(AVCodecContext *avctx, void *data,
samples_flt = (float *)s->frame.data[0]; samples_flt = (float *)s->frame.data[0];
for (i=0 ; i<blocks ; i++) { 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); nelly_decode_block(s, buf, samples_flt);
samples_flt += NELLY_SAMPLES; samples_flt += NELLY_SAMPLES;
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment