summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-10-09 09:22:36 +0200
committerAnton Khirnov <anton@khirnov.net>2020-10-28 15:01:40 +0100
commit744b7f2e91fad0953505c909bc2b0cebced03d28 (patch)
treec6d040f0d8b036590488f3448c4517a919ed3e94 /libavformat/avformat.h
parent30f5180ca6c05ce62b2f7d2ef56b1ce04951aa84 (diff)
lavf: move AVStream.last_in_packet_buffer to AVStreamInternal
Those are private fields, no reason to have them exposed in a public header.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index fc89db1838..4865c56cc3 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1079,13 +1079,9 @@ typedef struct AVStream {
enum AVStreamParseType need_parsing;
struct AVCodecParserContext *parser;
- /**
- * last packet in packet_buffer for this stream when muxing.
- */
- struct AVPacketList *last_in_packet_buffer;
-
#if LIBAVFORMAT_VERSION_MAJOR < 59
// kept for ABI compatibility only, do not access in any way
+ void *unused7;
AVProbeData unused6;
int64_t unused5[16+1];
void *unused2;