summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-05-01 23:13:41 -0300
committerJames Almer <jamrial@gmail.com>2021-05-07 09:27:20 -0300
commitfab2ed47042d4cc2a4cd69bb97738024c01300c7 (patch)
tree4606f91b941a708db2b79e064f3a9601ff5615e0 /libavformat/internal.h
parent1262f67cca1ed045521dc3af0d9d0ee9716335f2 (diff)
avformat: move AVStream.probe_packets to AVStreamInternal
It's a private fields, no reason to have it exposed in a public header. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 10d8f8dfeb..6af38720c8 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -368,6 +368,11 @@ struct AVStreamInternal {
int64_t last_IP_pts;
int last_IP_duration;
+
+ /**
+ * Number of packets to buffer for codec probing
+ */
+ int probe_packets;
};
#ifdef __GNUC__