Commit 94fdfb53 authored by reimar's avatar reimar

Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoder

should use it, too).


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19221 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 41ecd21d
...@@ -12,6 +12,11 @@ libavutil: 2009-03-08 ...@@ -12,6 +12,11 @@ libavutil: 2009-03-08
API changes, most recent first: API changes, most recent first:
2009-06-19 - r19222 - lavc 52.32.0 - AVSubtitle.pts
Added a pts field to AVSubtitle which gives the subtitle's packet
PTS in AV_TIME_BASE. Some subtitle de-/encoders (e.g. XSUB) will
not work right without this.
2009-06-03 - r19078 - lavc 52.30.2 - AV_PKT_FLAG_KEY 2009-06-03 - r19078 - lavc 52.30.2 - AV_PKT_FLAG_KEY
PKT_FLAG_KEY has been deprecated and will be dropped for the next PKT_FLAG_KEY has been deprecated and will be dropped for the next
major version. Use AV_PKT_FLAG_KEY instead. major version. Use AV_PKT_FLAG_KEY instead.
......
...@@ -814,6 +814,7 @@ static void do_subtitle_out(AVFormatContext *s, ...@@ -814,6 +814,7 @@ static void do_subtitle_out(AVFormatContext *s,
nb = 1; nb = 1;
for(i = 0; i < nb; i++) { for(i = 0; i < nb; i++) {
sub->pts = av_rescale_q(pts, ist->st->time_base, AV_TIME_BASE_Q);
subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out, subtitle_out_size = avcodec_encode_subtitle(enc, subtitle_out,
subtitle_out_max_size, sub); subtitle_out_max_size, sub);
......
...@@ -30,8 +30,8 @@ ...@@ -30,8 +30,8 @@
#include "libavutil/avutil.h" #include "libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 52 #define LIBAVCODEC_VERSION_MAJOR 52
#define LIBAVCODEC_VERSION_MINOR 31 #define LIBAVCODEC_VERSION_MINOR 32
#define LIBAVCODEC_VERSION_MICRO 2 #define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \ LIBAVCODEC_VERSION_MINOR, \
...@@ -2734,6 +2734,7 @@ typedef struct AVSubtitle { ...@@ -2734,6 +2734,7 @@ typedef struct AVSubtitle {
uint32_t end_display_time; /* relative to packet pts, in ms */ uint32_t end_display_time; /* relative to packet pts, in ms */
unsigned num_rects; unsigned num_rects;
AVSubtitleRect **rects; AVSubtitleRect **rects;
int64_t pts; ///< Same as packet pts, in AV_TIME_BASE
} AVSubtitle; } AVSubtitle;
/* packet functions */ /* packet functions */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment