summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-08-08 22:57:12 +0100
committerMans Rullgard <mans@mansr.com>2012-08-09 20:52:39 +0100
commit6d3783d16001810885603b39857d48bc84744ea2 (patch)
treee305cfd949752080b8949b53bfef05fdb046a866
parent1c4ab37c38e4ede6bbdf95221ad6cbf1bbcb7e9d (diff)
ffmenc: replace if/abort with assert()
The condition is trivially true, but keeping the assert() is sensible to avoid FFM_HEADER_SIZE ever getting out of sync with the actual code. Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r--libavformat/ffmenc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/ffmenc.c b/libavformat/ffmenc.c
index ab69267f54..806930948b 100644
--- a/libavformat/ffmenc.c
+++ b/libavformat/ffmenc.c
@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <assert.h>
+
#include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h"
#include "avformat.h"
@@ -34,8 +36,7 @@ static void flush_packet(AVFormatContext *s)
fill_size = ffm->packet_end - ffm->packet_ptr;
memset(ffm->packet_ptr, 0, fill_size);
- if (avio_tell(pb) % ffm->packet_size)
- av_abort();
+ assert(avio_tell(pb) % ffm->packet_size == 0);
/* put header */
avio_wb16(pb, PACKET_ID);