shithub: h264bsd

Download patch

ref: d54a2b10163d1c743f06ebde69fd4ae74c04fd28
parent: 8fdc35e038d065965a2d8730e0b2e7e8d1285e39
author: Sam Leitch <sam.leitch@calgaryscientific.com>
date: Mon Mar 17 13:20:54 EDT 2014

Fixed an empty for loop error

--- a/src/h264bsd_conceal.c
+++ b/src/h264bsd_conceal.c
@@ -185,7 +185,7 @@
             int ii = 0;
             int size = width*height*384;
             u8* curr_data = currImage->data;
-            for (ii = 0; ii < size;ii++);
+            for (ii = 0; ii < size;ii++)
                 curr_data[i] = refData[i];
 #endif
         }