From ca940ed2d5ad8b0f00d289f0216bb19f115bac85 Mon Sep 17 00:00:00 2001
From: Marton Balint <cus@passwd.hu>
Date: Wed, 15 Nov 2017 22:13:41 +0100
Subject: [PATCH] avformat/avio: remove must_flush from AVIOContext

It is unused.

Signed-off-by: Marton Balint <cus@passwd.hu>
---
 libavformat/avio.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavformat/avio.h b/libavformat/avio.h
index 76ff7cd81ea..75912ce6bed 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -236,7 +236,6 @@ typedef struct AVIOContext {
     int (*write_packet)(void *opaque, uint8_t *buf, int buf_size);
     int64_t (*seek)(void *opaque, int64_t offset, int whence);
     int64_t pos;            /**< position in the file of the current buffer */
-    int must_flush;         /**< unused */
     int eof_reached;        /**< true if eof reached */
     int write_flag;         /**< true if open for writing */
     int max_packet_size;
-- 
GitLab