2011-02-26 19:47:49 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2011-02-26 19:47:49 +00:00
|
|
|
*
|
2017-06-20 11:09:28 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2011-02-26 19:47:49 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2011-02-26 19:47:49 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-06-20 11:09:28 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2011-02-26 19:47:49 +00:00
|
|
|
*
|
2017-06-20 11:09:28 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2011-02-26 19:47:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPLAYER_FIND_SUBFILES_H
|
|
|
|
#define MPLAYER_FIND_SUBFILES_H
|
|
|
|
|
2014-01-04 00:27:06 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2013-11-25 22:38:51 +00:00
|
|
|
struct subfn {
|
2020-09-27 22:12:52 +00:00
|
|
|
int type; // STREAM_SUB/STREAM_AUDIO/STREAM_VIDEO(coverart)
|
2013-11-25 22:38:51 +00:00
|
|
|
int priority;
|
|
|
|
char *fname;
|
|
|
|
char *lang;
|
|
|
|
};
|
|
|
|
|
2013-12-21 18:02:05 +00:00
|
|
|
struct mpv_global;
|
2018-05-21 14:25:52 +00:00
|
|
|
struct MPOpts;
|
|
|
|
struct subfn *find_external_files(struct mpv_global *global, const char *fname,
|
|
|
|
struct MPOpts *opts);
|
2011-02-26 19:47:49 +00:00
|
|
|
|
2014-01-04 00:27:06 +00:00
|
|
|
bool mp_might_be_subtitle_file(const char *filename);
|
|
|
|
|
2011-02-26 19:47:49 +00:00
|
|
|
#endif /* MPLAYER_FINDFILES_H */
|