summaryrefslogtreecommitdiff
path: root/libavcodec/textdec.c
Commit message (Collapse)AuthorAge
* configure: Use a separate config_components.h header for $ALL_COMPONENTSMartin Storsjö2022-03-16
| | | | | | | | This avoids unnecessary rebuilds of most source files if only the list of enabled components has changed, but not the other properties of the build, set in config.h. Signed-off-by: Martin Storsjö <martin@martin.st>
* avcodec/textdec: Deduplicate AVClassesAndreas Rheinhardt2021-07-08
| | | | | | | | The child_class_next API relied on different AVCodecs to use different AVClasses; yet this API has been replaced by child_class_iterate. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec: Mark ff_ass_subtitle_header based decoders as init-threadsafeAndreas Rheinhardt2021-05-02
| | | | | | | ff_ass_subtitle_header_full() just uses av_asprintf() and is therefore thread-safe itself. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* avcodec: Constify AVCodecsAndreas Rheinhardt2021-04-27
| | | | | | | | | | Given that the AVCodec.next pointer has now been removed, most of the AVCodecs are not modified at all any more and can therefore be made const (as this patch does); the only exceptions are the very few codecs for external libraries that have a init_static_data callback. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* lavc/options: add ass_ro_flush_noop to flags2Clément Bœsch2016-02-26
|
* lavc: allow subtitle text format to be ASS without timingClément Bœsch2016-02-26
|
* avcodec/textdec: use AV_OPT_TYPE_BOOL for keep_ass_markup optionClément Bœsch2015-09-12
|
* Added STL demuxer and decoderEejya Singh2014-10-22
| | | | Signed-off-by: Clément Bœsch <u@pkh.me>
* avcodec/ass: assume raw=0 in ff_ass_add_rect_bprintClément Bœsch2014-10-19
|
* avcodec/textdec: add some memory checksClément Bœsch2014-09-21
|
* ass: move text_event_to_ass from textdec.c to ass.c and export itMarton Balint2013-11-10
| | | | Signed-off-by: Marton Balint <cus@passwd.hu>
* cosmetics: group remaining .name and .long_name.Clément Bœsch2013-10-04
| | | | See b2bed9325.
* lavc/textdec: fix subviewer1 preproc check.Clément Bœsch2012-12-31
|
* Add SubViewer v1 subtitles demuxer and decoder.Clément Bœsch2012-12-31
|
* Add PJS subtitles demuxer and decoder.Clément Bœsch2012-12-30
|
* Add VPlayer subtitles demuxer and decoder.Clément Bœsch2012-12-30
| | | | | | | Note that the linebreaks text codec option (but not the feature) has been removed; its main goal was to allow demuxers to configure the text decoder (and not meant to be used by users), but the AVOption are not a viable solution. This is solved differently in this commit.
* lavc: add raw text subtitles decoder.Clément Bœsch2012-10-18