1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-12 04:15:06 +02:00

amr: use av_assert()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-06-15 19:37:53 +02:00
parent 47f8303069
commit 17bbb818ae

View File

@ -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))
{