diff options
author | Philip Langdale <philipl@overt.org> | 2012-06-06 09:12:24 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2012-08-04 12:01:24 -0700 |
commit | 2daaf77698c9adc9b390e94b755d743c135a469f (patch) | |
tree | 4a00e7ccbb38ed633ee066810975f97928798bfb /libavcodec/version.h | |
parent | 759901f817cb481c989af7bec48f24377ec25735 (diff) | |
download | ffmpeg-2daaf77698c9adc9b390e94b755d743c135a469f.tar.gz |
movtextenc: 3GPP TS 26.245 Timed Text Encoder.
This change introduces a basic encoder for 3GPP Timed Text subtitles,
also known as TX3G, Quicktime subtitles, or "movtext" in the existing
code.
This initial change doesn't attempt to write styling information,
and just writes the plain text of the subtitles. I intend to add
support for styles eventually, but it's challenging due to a lack
of existing players that support them.
Note that an additional change is required to the mov/mp4 muxer to
write empty subtitle packets to indicate subtitle duration.
Signed-off-by: Philip Langdale <philipl@overt.org>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index cb26975eed..6794d851a4 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -27,7 +27,7 @@ */ #define LIBAVCODEC_VERSION_MAJOR 54 -#define LIBAVCODEC_VERSION_MINOR 48 +#define LIBAVCODEC_VERSION_MINOR 49 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |