author | sheepluva |
Sat, 25 Aug 2012 22:55:47 +0200 | |
changeset 7632 | 81e5e7092023 |
parent 7631 | 01b599d6f72d |
child 7679 | bfa26daad684 |
permissions | -rw-r--r-- |
7631
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
1 |
/* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
3 |
* Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com> |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
4 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
8 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
12 |
* GNU General Public License for more details. |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
13 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
17 |
*/ |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
18 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
19 |
#ifndef LIBAV_ITERACTION |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
20 |
#define LIBAV_ITERACTION |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
21 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
22 |
#include <QComboBox> |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
23 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
24 |
/** |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
25 |
* @brief Class for interacting with ffmpeg/libav libraries |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
26 |
* |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
27 |
* @see <a href="http://en.wikipedia.org/wiki/Singleton_pattern">singleton pattern</a> |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
28 |
*/ |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
29 |
class LibavIteraction |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
30 |
{ |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
31 |
LibavIteraction(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
32 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
33 |
public: |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
34 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
35 |
static LibavIteraction & instance(); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
36 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
37 |
// fill combo box with known file formats |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
38 |
void fillFormats(QComboBox * pFormats); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
39 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
40 |
// fill combo boxes with known codecs for given formats |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
41 |
void fillCodecs(const QString & format, QComboBox * pVCodecs, QComboBox * pACodecs); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
42 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
43 |
QString getExtension(const QString & format); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
44 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
45 |
// get information about file (duration, resolution etc) in multiline string |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
46 |
QString getFileInfo(const QString & filepath); |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
47 |
}; |
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
48 |
|
01b599d6f72d
dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents:
7280
diff
changeset
|
49 |
#endif // LIBAV_ITERACTION |