diff options
author | James Almer <jamrial@gmail.com> | 2021-05-01 23:05:21 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-05-07 09:27:20 -0300 |
commit | 1262f67cca1ed045521dc3af0d9d0ee9716335f2 (patch) | |
tree | a2f48561496b377c2be4a54f716e338aa4bdf694 /libavformat/avformat.h | |
parent | 553619eacbdc7fdb88bb1f7e8658febbd258545e (diff) | |
download | ffmpeg-1262f67cca1ed045521dc3af0d9d0ee9716335f2.tar.gz |
avformat: move AVStream.last-IP_{pts,duration} to AVStreamInternal
Those are private fields, no reason to have them 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 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 8ba98a0291..301cb11bac 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1002,8 +1002,6 @@ typedef struct AVStream { */ int64_t first_dts; int64_t cur_dts; - int64_t last_IP_pts; - int last_IP_duration; /** * Number of packets to buffer for codec probing |