[FFmpeg-cvslog] nellymoserdec: SAMPLE_FMT -> AV_SAMPLE_FMT

Anton Khirnov git at videolan.org
Fri Jan 13 01:41:23 CET 2012


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Jan 12 09:26:11 2012 +0100| [d54f1e640790b9690cdb4f543f374016615ec000] | committer: Anton Khirnov

nellymoserdec: SAMPLE_FMT -> AV_SAMPLE_FMT

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d54f1e640790b9690cdb4f543f374016615ec000
---

 libavcodec/nellymoserdec.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c
index 7f585e4..69c1b86 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 {



More information about the ffmpeg-cvslog mailing list