summaryrefslogtreecommitdiffstats
path: root/libhb/decavsub.c
Commit message (Collapse)AuthorAgeFilesLines
* decavsub: fix SSA hardsub when the stream contains subtitle lines with ↵Damiano Galassi2021-02-241-1/+1
| | | | | | duration equals to zero. Allow setting the subtitles packet duration to 0 if the source format is not PGS. Fixed #3424.
* Update copyright dates to 2021.Bradley Sepos2021-01-011-1/+1
|
* libhb: Fix decavsub copyright date.Bradley Sepos2020-05-071-1/+1
|
* decavsub: fix decoding PGS from ffmpeg streamsJohn Stebbins2020-03-301-2/+10
| | | | | Duration of subtitle packets was getting set to 0 and sync was dropping the subs.
* decavsub: patch ffmpeg to fix workaround hacksJohn Stebbins2020-03-291-37/+6
|
* decavsub: reduce EIA 608 font sizeJohn Stebbins2020-03-291-1/+1
| | | | The larger font size was causing rendering outside the frame boundaries
* decavsub: fix dvb subtitle passthroughJohn Stebbins2020-03-291-1/+5
| | | | The "clear" subtitle packets were not making it through to the muxer
* decavsub: remove dvb subtitle post-stuffing during demuxJohn Stebbins2020-03-291-9/+1
| | | | | This seems to be what ffmpeg expects. This way we also mux it correctly into mkv, i.e. without the trailing 0xff stuffing byte.
* decavsub: use libav to decode dvd subtitlesJohn Stebbins2020-03-291-29/+79
| | | | Simplifies code, removes encvobsub.c (was never used) and decvobsub.c.
* decavsub: use libav to decode EIA 608 subtitlesJohn Stebbins2020-03-291-4/+43
| | | | simplifies code, eliminates deccc608sub.c
* decavsub: add DVB subtitle *burn-only* supportJohn Stebbins2020-03-291-14/+8
| | | | passthrough will hopefully come later ;)
* decavsub: add general purpose avcodec subtitle decoderJohn Stebbins2020-03-291-0/+650
Currently using it for pgs, srt, and ssa subtitles.