summaryrefslogtreecommitdiff
path: root/fftools/ffmpeg.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-04-26 00:11:59 +0200
committerAnton Khirnov <anton@khirnov.net>2023-05-02 10:59:24 +0200
commit302aecd06a07ee4eac7486167992fa18f0447232 (patch)
tree20da434af6303151f9a61fe4f17e90a2b77553ca /fftools/ffmpeg.h
parentae95cd85dc73319a704f1092b7542978ef8869dd (diff)
downloadffmpeg-302aecd06a07ee4eac7486167992fa18f0447232.tar.gz
fftools/ffmpeg: drop InputStream.[next_]pts
They are no longer used for anything.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r--fftools/ffmpeg.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h
index c4abf89b58..b6389d7f99 100644
--- a/fftools/ffmpeg.h
+++ b/fftools/ffmpeg.h
@@ -366,10 +366,6 @@ typedef struct InputStream {
int64_t first_dts; ///< dts of the first packet read for this stream (in AV_TIME_BASE units)
int64_t dts; ///< dts of the last packet read for this stream (in AV_TIME_BASE units)
- /* predicted pts of the next decoded frame, in AV_TIME_BASE */
- int64_t next_pts;
- int64_t pts; ///< current pts of the decoded frame (in AV_TIME_BASE units)
-
// pts/estimated duration of the last decoded frame
// * in decoder timebase for video,
// * in last_frame_tb (may change during decoding) for audio