? ffmpeg/config.err
? ffmpeg/libavcodec/cabac.h.mine
? ffmpeg/libavutil/softfloat
? ffmpeg/libswscale/cs_test
Index: ffmpeg/libavcodec/faad.c
===================================================================
RCS file: /cvsroot/avifile/avifile-0.6/ffmpeg/libavcodec/faad.c,v
retrieving revision 1.14
diff -u -b -B -r1.14 faad.c
--- ffmpeg/libavcodec/faad.c	10 Feb 2007 13:45:25 -0000	1.14
+++ ffmpeg/libavcodec/faad.c	15 Mar 2007 22:16:08 -0000
@@ -218,10 +218,17 @@
                 libfaadname, dlerror());
         return -1;
     }
+#ifdef NEAACDECAPI
+#define dfaac(a, b) \
+    do { static const char* n = "NeAACDec" #a; \
+    if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
+    for(;;) {
+#else /* !NEAACDECAPI */
 #define dfaac(a, b) \
     do { static const char* n = "faacDec" #a; \
     if ((s->faacDec ## a = b dlsym( s->handle, n )) == NULL) { err = n; break; } } while(0)
     for(;;) {
+#endif /* NEAACDECAPI */
 #else  /* !CONFIG_LIBFAADBIN */
 #define dfaac(a, b)     s->faacDec ## a = faacDec ## a
 #endif /* CONFIG_LIBFAADBIN */
Index: ffmpeg/libavcodec/mpegaudiodec.c
===================================================================
RCS file: /cvsroot/avifile/avifile-0.6/ffmpeg/libavcodec/mpegaudiodec.c,v
retrieving revision 1.47
diff -u -b -B -r1.47 mpegaudiodec.c
--- ffmpeg/libavcodec/mpegaudiodec.c	10 Feb 2007 13:45:26 -0000	1.47
+++ ffmpeg/libavcodec/mpegaudiodec.c	15 Mar 2007 22:16:09 -0000
@@ -2558,7 +2558,7 @@
     header = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
     if(ff_mpa_check_header(header) < 0){
         buf++;
-//        buf_size--;
+        buf_size--;
         av_log(avctx, AV_LOG_ERROR, "Header missing skipping one byte.\n");
         goto retry;
     }
@@ -2586,12 +2586,12 @@
             avctx->frame_size = 1152;
         break;
     }
-
+av_log(avctx, AV_LOG_ERROR, "FF framesuz %d  %d\n", s->frame_size, buf_size);
     if(s->frame_size<=0 || s->frame_size > buf_size){
         av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
         return -1;
-    }else if(s->frame_size < buf_size){
-        av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n");
+//    }else if(s->frame_size < buf_size){
+//        av_log(avctx, AV_LOG_ERROR, "incorrect frame size\n");
     }
 
     out_size = mp_decode_frame(s, out_samples, buf, buf_size);
