aboutsummaryrefslogtreecommitdiffhomepage
path: root/sub/find_subfiles.h
Commit message (Collapse)AuthorAge
* find_subfiles: mp_msg conversionsGravatar wm42013-12-21
|
* sub: respect detected language for fuzzy-matched external subtitlesGravatar wm42013-11-25
| | | | | | | Solve this by passing through the language to the player, which then uses the generic subtitle selection code to make a choice. Fixes #367.
* find_subfiles: some cleanupsGravatar wm42013-09-07
| | | | | | | Remove a crap assert() (what... either it can't happen, or it should error or at least abort() if it can't be handled). Remove some dead definitions.
* sub: remove vobsub reader in favor of ffmpeg vobsub demuxerGravatar wm42012-12-11
| | | | | | | | ffmpeg recently added a demuxer that can read vobsubs (pairs of .sub and .idx files). Get rid of the internal vobsub reader, and use the ffmpeg demuxer instead. Sneak in an unrelated manpage change (autosub default).
* subs: options: add -sub-pathsGravatar Clément Bœsch2011-04-20
|
* subs: move vobsub loading logic down to find_subfiles.cGravatar Uoti Urpala2011-04-20
| | | | | | | Analogously to the previous commit, move path handling logic for loading external vobsub files from mplayer.c to find_subfiles.c. Based on a commit from Clément Bœsch but fixed and simplified.
* subs: move text sub loading logic down to find_subfiles.cGravatar Clément Bœsch2011-04-20
| | | | | | Move path handling for loading external subtitle files from mplayer.c to find_subfiles.c. Now the remaining code in mplayer.c only gets a list of potential filenames and tries opening those.
* find_subfiles: move sub_filenames() hereGravatar Clément Bœsch2011-04-20
Move sub_filenames() and related code from subreader.c to new file find_subfiles.c. This function is used to find subtitle files that should be loaded for the current video; this functionality is not specific to the particular kind of text subtitle handling implemented in subreader.c. Also reindent and prettify the moved code a bit.