Mercurial > mplayer.hg
annotate subassconvert.h @ 32272:fd4cd29b6121
Automatic downmix using the pan filter when the requested channel count is 2
and the codec does not support it natively.
Patch by Clment Bsch, ubitux gmail com
author | cigaes |
---|---|
date | Sun, 26 Sep 2010 08:45:40 +0000 |
parents | b2329beb7406 |
children |
rev | line source |
---|---|
31686 | 1 /* |
2 * Header for subtitles converter to SSA/ASS | |
3 * | |
4 * This file is part of MPlayer. | |
5 * | |
6 * MPlayer is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; either version 2 of the License, or | |
9 * (at your option) any later version. | |
10 * | |
11 * MPlayer is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 * GNU General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public License along | |
17 * with MPlayer; if not, write to the Free Software Foundation, Inc., | |
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
19 */ | |
20 | |
21 #ifndef MPLAYER_SUBASSCONVERT_H | |
22 #define MPLAYER_SUBASSCONVERT_H | |
23 | |
31892
b2329beb7406
Add #includes for headers necessary to pass 'make checkheaders'.
diego
parents:
31686
diff
changeset
|
24 #include <sys/types.h> |
b2329beb7406
Add #includes for headers necessary to pass 'make checkheaders'.
diego
parents:
31686
diff
changeset
|
25 |
31686 | 26 void subassconvert_subrip(const char *orig, char *dest, size_t dest_buffer_size); |
27 void subassconvert_microdvd(const char *orig, char *dest, size_t dest_buffer_size); | |
28 | |
29 #endif |