[FFmpeg-cvslog] pcmdec: use av_assert()
Michael Niedermayer
git at videolan.org
Thu Jun 14 23:56:52 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Jun 14 23:52:23 2012 +0200| [948e97a2cc5d10083eddd98dcc523d8889bab2c0] | committer: Michael Niedermayer
pcmdec: use av_assert()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=948e97a2cc5d10083eddd98dcc523d8889bab2c0
---
libavformat/pcmdec.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/pcmdec.c b/libavformat/pcmdec.c
index 94f6b4a..4eb3c73 100644
--- a/libavformat/pcmdec.c
+++ b/libavformat/pcmdec.c
@@ -24,6 +24,7 @@
#include "pcm.h"
#include "libavutil/log.h"
#include "libavutil/opt.h"
+#include "libavutil/avassert.h"
#define RAW_SAMPLES 1024
@@ -42,7 +43,7 @@ static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret;
bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id);
- assert(bps); // if false there IS a bug elsewhere (NOT in this function)
+ av_assert1(bps); // if false there IS a bug elsewhere (NOT in this function)
pkt->dts=
pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels);
More information about the ffmpeg-cvslog
mailing list