diff options
author | Philip Langdale <philipl@overt.org> | 2012-08-11 20:27:51 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2012-08-15 20:44:23 -0700 |
commit | 6af680fa070ebc5081045e4b24ceaa4fccfa89b4 (patch) | |
tree | 89bae7c77e4b1a0070e2521009bd5c4bfe017920 /libavcodec/Makefile | |
parent | b1b84b068d20d29aa9e1c0cc3a989e293138997c (diff) | |
download | ffmpeg-6af680fa070ebc5081045e4b24ceaa4fccfa89b4.tar.gz |
srtdec: Add timing-less "subrip" decoder.
After various discussions, we concluded that, amongst other things,
it made sense to have a separate subrip decoder that did not use
in-band timing information, and rather relied on the ffmpeg level
timing.
As this is 90% the same as the existing srt decoder, it's implemented
in the same file.
Signed-off-by: Philip Langdale <philipl@overt.org>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index a8e4e88749..bab97e4767 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -408,6 +408,7 @@ OBJS-$(CONFIG_SONIC_LS_ENCODER) += sonic.o OBJS-$(CONFIG_SP5X_DECODER) += sp5xdec.o mjpegdec.o mjpeg.o OBJS-$(CONFIG_SRT_DECODER) += srtdec.o ass.o OBJS-$(CONFIG_SRT_ENCODER) += srtenc.o ass_split.o +OBJS-$(CONFIG_SUBRIP_DECODER) += srtdec.o ass.o OBJS-$(CONFIG_SUBVIEWER_DECODER) += subviewerdec.o ass.o OBJS-$(CONFIG_SUNRAST_DECODER) += sunrast.o OBJS-$(CONFIG_SUNRAST_ENCODER) += sunrastenc.o |