[FFmpeg-cvslog] mux: change 1 assert->av_assert1()
Michael Niedermayer
git at videolan.org
Sun Oct 7 23:34:32 CEST 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Oct 7 23:15:18 2012 +0200| [f2a7e1a62b6db113f3f88b67436f0650b3f33fcb] | committer: Michael Niedermayer
mux: change 1 assert->av_assert1()
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f2a7e1a62b6db113f3f88b67436f0650b3f33fcb
---
libavformat/mux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mux.c b/libavformat/mux.c
index 48f4d77..9bcee99 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:
More information about the ffmpeg-cvslog
mailing list