nellymoserdec: SAMPLE_FMT -> AV_SAMPLE_FMT
authorAnton Khirnov <anton@khirnov.net>
Thu, 12 Jan 2012 08:26:11 +0000 (09:26 +0100)
committerAnton Khirnov <anton@khirnov.net>
Thu, 12 Jan 2012 17:18:23 +0000 (18:18 +0100)
libavcodec/nellymoserdec.c

index 7f585e4..69c1b86 100644 (file)
@@ -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 {