Commit 6d3783d1 authored by Mans Rullgard's avatar Mans Rullgard

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: 's avatarMans Rullgard <mans@mansr.com>
parent 1c4ab37c
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include <assert.h>
#include "libavutil/intreadwrite.h" #include "libavutil/intreadwrite.h"
#include "libavutil/intfloat.h" #include "libavutil/intfloat.h"
#include "avformat.h" #include "avformat.h"
...@@ -34,8 +36,7 @@ static void flush_packet(AVFormatContext *s) ...@@ -34,8 +36,7 @@ static void flush_packet(AVFormatContext *s)
fill_size = ffm->packet_end - ffm->packet_ptr; fill_size = ffm->packet_end - ffm->packet_ptr;
memset(ffm->packet_ptr, 0, fill_size); memset(ffm->packet_ptr, 0, fill_size);
if (avio_tell(pb) % ffm->packet_size) assert(avio_tell(pb) % ffm->packet_size == 0);
av_abort();
/* put header */ /* put header */
avio_wb16(pb, PACKET_ID); avio_wb16(pb, PACKET_ID);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment