diff options
author | James Almer <jamrial@gmail.com> | 2021-05-01 23:13:41 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-05-07 09:27:20 -0300 |
commit | fab2ed47042d4cc2a4cd69bb97738024c01300c7 (patch) | |
tree | 4606f91b941a708db2b79e064f3a9601ff5615e0 /libavformat/avformat.h | |
parent | 1262f67cca1ed045521dc3af0d9d0ee9716335f2 (diff) | |
download | ffmpeg-fab2ed47042d4cc2a4cd69bb97738024c01300c7.tar.gz |
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/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 301cb11bac..59f32b1c2b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1004,11 +1004,6 @@ typedef struct AVStream { int64_t cur_dts; /** - * Number of packets to buffer for codec probing - */ - int probe_packets; - - /** * Number of frames that have been demuxed during avformat_find_stream_info() */ int codec_info_nb_frames; |