summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-08-17 15:37:52 +0200
committerAnton Khirnov <anton@khirnov.net>2022-08-22 11:35:43 +0200
commit14726571ddbf5981a1eeadf3c06eeb44b89589ae (patch)
tree37933d0af31ab883b6d25ebf50b79aaf1bd7e994 /doc
parent627543f58a3166810b9cd9c8b483678c82a99be9 (diff)
lavf: deprecate av_stream_get_end_pts()
According to its documentation it returns "pts of the last muxed packet + its duration", but the value it actually returns right now is (possibly guessed) dts after muxer-internal bitstream filtering (if any). This function was added for ffmpeg.c, but it is not used there anymore. Since the value it returns is ill-defined and so inappropriate for any serious use, deprecate it.
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index 2df65a521d..4c0c9db628 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -14,6 +14,9 @@ libavutil: 2021-04-27
API changes, most recent first:
+2022-08-xx - xxxxxxxxxx - lavf 59 - avformat.h
+ Deprecate av_stream_get_end_pts() without replacement.
+
2022-08-19 - 352799dca8 - lavc 59.42.102 - codec_id.h
Deprecate AV_CODEC_ID_AYUV and ayuv decoder/encoder. The rawvideo codec
and vuya pixel format combination will be used instead from now on.