aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-07 23:15:18 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-07 23:31:27 +0200
commitf2a7e1a62b6db113f3f88b67436f0650b3f33fcb (patch)
tree3c14c8c2a8bfae606e7a503ba7a6ca19dfaa2dea /libavformat/mux.c
parent2714e841bcfd5e0d80251888813ff4648bdfe455 (diff)
downloadandroid_external_ffmpeg-f2a7e1a62b6db113f3f88b67436f0650b3f33fcb.tar.gz
android_external_ffmpeg-f2a7e1a62b6db113f3f88b67436f0650b3f33fcb.tar.bz2
android_external_ffmpeg-f2a7e1a62b6db113f3f88b67436f0650b3f33fcb.zip
mux: change 1 assert->av_assert1()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 48f4d77d5f..9bcee99ee2 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -560,7 +560,7 @@ int ff_interleave_add_packet(AVFormatContext *s, AVPacket *pkt,
next_point = &(s->packet_buffer_end->next);
}
}
- assert(!*next_point);
+ av_assert1(!*next_point);
s->packet_buffer_end = this_pktl;
next_non_null: