Skip to content

Commit a764c14

Browse files
committed
doc/APIchanges: update for subtitle filtering changes
Signed-off-by: softworkz <[email protected]>
1 parent eec04cf commit a764c14

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

doc/APIchanges

+24
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,30 @@ libavutil: 2021-04-27
1414

1515
API changes, most recent first:
1616

17+
2021-12-05 - xxxxxxxxxx - lavc 59.15.100 - avcodec.h
18+
Deprecate avcodec_encode_subtitle(), use regular encode api now
19+
20+
2021-12-05 - xxxxxxxxxx - lavc 59.15.100 - codec_desc.h
21+
Add avcodec_descriptor_get_subtitle_format()
22+
23+
2021-12-05 - xxxxxxxxxx - lavc 59.15.100 - avcodec.h
24+
Deprecate avsubtitle_free()
25+
Deprecate avcodec_decode_subtitle2(), use regular decode api now
26+
27+
2021-12-05 - xxxxxxxxxx - lavu 57.11.100 - frame.h
28+
Add AVMediaType field to AVFrame
29+
Add Fields for carrying subtitle data to AVFrame
30+
(subtitle_areas, subtitle_header, subtitle_pts, start/end time, etc.)
31+
Add av_frame_get_buffer2() and deprecate av_frame_get_buffer()
32+
33+
2021-12-05 - xxxxxxxxxx - lavu 57.11.100 - subfmt.h
34+
Add struct AVSubtitleArea (replaces AVSubtitle)
35+
Add av_get_subtitle_fmt_name() and av_get_subtitle_fmt()
36+
37+
2021-12-05 - xxxxxxxxxx - lavu 57.11.100 - subfmt.h
38+
Add enum AVSubtitleType (moved from lavc), add new values, deprecate existing
39+
40+
2021-11-xx - xxxxxxxxxx - lavfi 8.19.100 - avfilter.h
1741
2022-01-04 - 78dc21b123e - lavu 57.16.100 - frame.h
1842
Add AV_FRAME_DATA_DOVI_METADATA.
1943

libavcodec/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "libavutil/version.h"
2929

3030
#define LIBAVCODEC_VERSION_MAJOR 59
31-
#define LIBAVCODEC_VERSION_MINOR 20
31+
#define LIBAVCODEC_VERSION_MINOR 21
3232
#define LIBAVCODEC_VERSION_MICRO 100
3333

3434
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \

libavutil/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
*/
8080

8181
#define LIBAVUTIL_VERSION_MAJOR 57
82-
#define LIBAVUTIL_VERSION_MINOR 18
82+
#define LIBAVUTIL_VERSION_MINOR 19
8383
#define LIBAVUTIL_VERSION_MICRO 100
8484

8585
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \

0 commit comments

Comments
 (0)