From d9a9518fbab6b70d02270d49f4c90740a310976b Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 11 Jun 2012 20:14:22 +0200 Subject: [PATCH] flvenc: use av_assert instead of assert Signed-off-by: Michael Niedermayer --- libavformat/flvenc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index a562ea9eda..c636c66bad 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -27,9 +27,8 @@ #include "avc.h" #include "metadata.h" #include "libavutil/dict.h" +#include "libavutil/avassert.h" -#undef NDEBUG -#include static const AVCodecTag flv_video_codec_ids[] = { {CODEC_ID_FLV1, FLV_CODECID_H263 }, @@ -453,7 +452,7 @@ static int flv_write_packet(AVFormatContext *s, AVPacket *pkt) case AVMEDIA_TYPE_AUDIO: flags = get_audio_flags(s, enc); - assert(size); + av_assert0(size); avio_w8(pb, FLV_TAG_TYPE_AUDIO); break;