summaryrefslogtreecommitdiffstats
path: root/libavformat/nutenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-13 18:51:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-13 18:54:17 +0200
commit4a6d790a6fc0de15112a7bbfe8b2b58ef058a48d (patch)
tree7642d0ca54d6c61c6e9ebb081ad6d9c11610ff07 /libavformat/nutenc.c
parent53eaca5d6bf63061db5ea4f7019937f11ad154ec (diff)
downloadffmpeg-streaming-4a6d790a6fc0de15112a7bbfe8b2b58ef058a48d.zip
ffmpeg-streaming-4a6d790a6fc0de15112a7bbfe8b2b58ef058a48d.tar.gz
nutenc: use av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r--libavformat/nutenc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c
index 5d5f10c..a6e6251 100644
--- a/libavformat/nutenc.c
+++ b/libavformat/nutenc.c
@@ -23,6 +23,7 @@
#include "libavutil/mathematics.h"
#include "libavutil/tree.h"
#include "libavutil/dict.h"
+#include "libavutil/avassert.h"
#include "libavcodec/mpegaudiodata.h"
#include "nut.h"
#include "internal.h"
@@ -640,7 +641,7 @@ static int nut_write_header(AVFormatContext *s){
nut->max_distance = MAX_DISTANCE;
build_elision_headers(s);
build_frame_code(s);
- assert(nut->frame_code['N'].flags == FLAG_INVALID);
+ av_assert0(nut->frame_code['N'].flags == FLAG_INVALID);
avio_write(bc, ID_STRING, strlen(ID_STRING));
avio_w8(bc, 0);
@@ -745,7 +746,7 @@ static int nut_write_packet(AVFormatContext *s, AVPacket *pkt){
ff_nut_add_sp(nut, nut->last_syncpoint_pos, 0/*unused*/, pkt->dts);
}
- assert(nus->last_pts != AV_NOPTS_VALUE);
+ av_assert0(nus->last_pts != AV_NOPTS_VALUE);
coded_pts = pkt->pts & ((1<<nus->msb_pts_shift)-1);
if(ff_lsb2full(nus, coded_pts) != pkt->pts)
OpenPOWER on IntegriCloud