diff stream/asf_streaming.c @ 22378:dc9d2940fc05

Replace MIN with FFMIN
author reimar
date Thu, 01 Mar 2007 12:54:38 +0000
parents 21263c9ddd87
children c056ed2819e8
line wrap: on
line diff
--- a/stream/asf_streaming.c	Thu Mar 01 12:54:08 2007 +0000
+++ b/stream/asf_streaming.c	Thu Mar 01 12:54:38 2007 +0000
@@ -470,7 +470,7 @@
       if (drop_chunk) continue;
     }
     if (rest == 0 && waiting > 0 && size-read > 0) {
-      int s = MIN(waiting,size-read);
+      int s = FFMIN(waiting,size-read);
       memset(buffer+read,0,s);
       waiting -= s;
       read += s;