Browse Source

amr: use av_assert()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
17bbb818ae
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      libavformat/amr.c

+ 2
- 3
libavformat/amr.c 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. 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,
size=packed_size[mode]; size=packed_size[mode];
} }
else else
{
assert(0);
}
av_assert0(0);


if ( (size==0) || av_new_packet(pkt, size)) if ( (size==0) || av_new_packet(pkt, size))
{ {


Loading…
Cancel
Save