diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-06-19 08:28:07 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-06-19 08:28:07 +0000 |
commit | 4bbe788ab7d1348d09026ef0c8554595fad5721d (patch) | |
tree | e4042aa0a8aaad25b76b11c36bef21f896fdeb81 /libavcodec | |
parent | 97668ac7f384ea436cec69331cd91bbaad27bd33 (diff) | |
download | ffmpeg-4bbe788ab7d1348d09026ef0c8554595fad5721d.tar.gz |
Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoder
should use it, too).
Originally committed as revision 19221 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7f26711f60..1786b138b0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -30,8 +30,8 @@ #include "libavutil/avutil.h" #define LIBAVCODEC_VERSION_MAJOR 52 -#define LIBAVCODEC_VERSION_MINOR 31 -#define LIBAVCODEC_VERSION_MICRO 2 +#define LIBAVCODEC_VERSION_MINOR 32 +#define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ @@ -2734,6 +2734,7 @@ typedef struct AVSubtitle { uint32_t end_display_time; /* relative to packet pts, in ms */ unsigned num_rects; AVSubtitleRect **rects; + int64_t pts; ///< Same as packet pts, in AV_TIME_BASE } AVSubtitle; /* packet functions */ |