diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-07 23:15:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-07 23:31:27 +0200 |
commit | f2a7e1a62b6db113f3f88b67436f0650b3f33fcb (patch) | |
tree | 3c14c8c2a8bfae606e7a503ba7a6ca19dfaa2dea /libavformat | |
parent | 2714e841bcfd5e0d80251888813ff4648bdfe455 (diff) | |
download | ffmpeg-f2a7e1a62b6db113f3f88b67436f0650b3f33fcb.tar.gz |
mux: change 1 assert->av_assert1()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mux.c | 2 |
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: |