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
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or modify
|
2011-02-26 19:47:49 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
2015-04-13 07:36:54 +00:00
|
|
|
* 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 {
|
2015-02-02 20:23:12 +00:00
|
|
|
int type; // STREAM_SUB/STREAM_AUDIO
|
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;
|
2015-02-02 20:23:12 +00:00
|
|
|
struct subfn *find_external_files(struct mpv_global *global, const char *fname);
|
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 */
|