Commit 948e97a2 authored by Michael Niedermayer's avatar Michael Niedermayer

pcmdec: use av_assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bb850480
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "pcm.h" #include "pcm.h"
#include "libavutil/log.h" #include "libavutil/log.h"
#include "libavutil/opt.h" #include "libavutil/opt.h"
#include "libavutil/avassert.h"
#define RAW_SAMPLES 1024 #define RAW_SAMPLES 1024
...@@ -42,7 +43,7 @@ static int raw_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -42,7 +43,7 @@ static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret; return ret;
bps= av_get_bits_per_sample(s->streams[0]->codec->codec_id); 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->dts=
pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels); pkt->pts= pkt->pos*8 / (bps * s->streams[0]->codec->channels);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment