diff --git a/libavformat/hls.c b/libavformat/hls.c index 6893f6d3ca18bb41cadec3f9633c7a40428ff3af..ffec1248189b504994113f571b0f0618c9a2bebe 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -919,9 +919,6 @@ static int read_from_url(struct playlist *pls, struct segment *seg, buf_size = FFMIN(buf_size, seg->size - pls->cur_seg_offset); ret = avio_read(pls->input, buf, buf_size); - if (ret != buf_size) - av_log(NULL, AV_LOG_ERROR, "Could not read complete segment.\n"); - if (ret > 0) pls->cur_seg_offset += ret;