Commit 17bbb818 authored by Michael Niedermayer's avatar Michael Niedermayer

amr: use av_assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 47f83030
...@@ -25,6 +25,7 @@ Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.tx ...@@ -25,6 +25,7 @@ Write and read amr data according to RFC3267, http://www.ietf.org/rfc/rfc3267.tx
Only mono files are supported. Only mono files are supported.
*/ */
#include "libavutil/avassert.h"
#include "avformat.h" #include "avformat.h"
#include "internal.h" #include "internal.h"
...@@ -143,9 +144,7 @@ static int amr_read_packet(AVFormatContext *s, ...@@ -143,9 +144,7 @@ static int amr_read_packet(AVFormatContext *s,
size=packed_size[mode]; size=packed_size[mode];
} }
else else
{ av_assert0(0);
assert(0);
}
if ( (size==0) || av_new_packet(pkt, size)) if ( (size==0) || av_new_packet(pkt, size))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment