[FFmpeg-cvslog] flvenc: use av_assert instead of assert
Michael Niedermayer
git at videolan.org
Mon Jun 11 20:22:49 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Jun 11 20:14:22 2012 +0200| [d9a9518fbab6b70d02270d49f4c90740a310976b] | committer: Michael Niedermayer
flvenc: use av_assert instead of assert
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d9a9518fbab6b70d02270d49f4c90740a310976b
---
libavformat/flvenc.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c
index a562ea9..c636c66 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 <assert.h>
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;
More information about the ffmpeg-cvslog
mailing list