[FFmpeg-cvslog] amr: use av_assert()

Michael Niedermayer git at videolan.org
Fri Jun 15 19:45:26 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Jun 15 19:37:53 2012 +0200| [17bbb818ae2a169a76f300d46e3d39f2dc68fea8] | committer: Michael Niedermayer

amr: use av_assert()

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

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

 libavformat/amr.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libavformat/amr.c b/libavformat/amr.c
index 39aad1d..016e895 100644
--- a/libavformat/amr.c
+++ b/libavformat/amr.c
@@ -25,6 +25,7 @@ Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.tx
 Only mono files are supported.
 
 */
+#include "libavutil/avassert.h"
 #include "avformat.h"
 #include "internal.h"
 
@@ -143,9 +144,7 @@ static int amr_read_packet(AVFormatContext *s,
         size=packed_size[mode];
     }
     else
-    {
-        assert(0);
-    }
+        av_assert0(0);
 
     if ( (size==0) || av_new_packet(pkt, size))
     {



More information about the ffmpeg-cvslog mailing list