From 844a115cd3cd829c894339133685b71e3201dc86 Mon Sep 17 00:00:00 2001 From: James Almer Date: Sat, 22 Apr 2017 21:52:06 -0300 Subject: Revert "avcodec/bsf: Forbid packet without payload in av_bsf_send_packet" This reverts commit bfdca87ab55c7f69087d962dc47aa45c8c6436fb. Packets with no data or side data will be valid EOF signal in an upcoming merge. Signed-off-by: James Almer --- libavcodec/bsf.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavcodec/bsf.c') diff --git a/libavcodec/bsf.c b/libavcodec/bsf.c index c984526e14..0f97c259cb 100644 --- a/libavcodec/bsf.c +++ b/libavcodec/bsf.c @@ -21,7 +21,6 @@ #include "libavutil/log.h" #include "libavutil/mem.h" #include "libavutil/opt.h" -#include "libavutil/avassert.h" #include "libavutil/avstring.h" #include "libavutil/bprint.h" @@ -180,8 +179,6 @@ int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt) return 0; } - av_assert0(pkt->data || pkt->side_data); - if (ctx->internal->eof) { av_log(ctx, AV_LOG_ERROR, "A non-NULL packet sent after an EOF.\n"); return AVERROR(EINVAL); -- cgit v1.2.3