[FFmpeg-cvslog] swscale/input: replace assert() by av_assert1()

Michael Niedermayer git at videolan.org
Wed Apr 9 07:37:20 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Apr  9 05:14:34 2014 +0200| [d98688efb1a5d9c0b82f27d70d96b40b843eb04a] | committer: Michael Niedermayer

swscale/input: replace assert() by av_assert1()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libswscale/input.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswscale/input.c b/libswscale/input.c
index 62a2495..3a2a124 100644
--- a/libswscale/input.c
+++ b/libswscale/input.c
@@ -539,7 +539,7 @@ static void yvy2ToUV_c(uint8_t *dstU, uint8_t *dstV, const uint8_t *unused0, con
         dstV[i] = src1[4 * i + 1];
         dstU[i] = src1[4 * i + 3];
     }
-    assert(src1 == src2);
+    av_assert1(src1 == src2);
 }
 
 static void bswap16Y_c(uint8_t *_dst, const uint8_t *_src, const uint8_t *unused1, const uint8_t *unused2, int width,



More information about the ffmpeg-cvslog mailing list