QTfrontend/util/libav_iteraction.h
author unc0rr
Sun, 21 Oct 2012 00:33:38 +0400
branchphysfslayer
changeset 7774 27f9b9362f47
parent 7679 bfa26daad684
permissions -rw-r--r--
Simplify DataManager as physfs partially implements its functions
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
 */
7679
bfa26daad684 - Fix some warnings in frontend
unc0rr
parents: 7631
diff changeset
    29
class LibavIteraction : public QObject
7631
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    30
{
7679
bfa26daad684 - Fix some warnings in frontend
unc0rr
parents: 7631
diff changeset
    31
    Q_OBJECT;
bfa26daad684 - Fix some warnings in frontend
unc0rr
parents: 7631
diff changeset
    32
7631
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    33
    LibavIteraction();
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
public:
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
    static LibavIteraction & instance();
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    38
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    39
    // fill combo box with known file formats
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    40
    void fillFormats(QComboBox * pFormats);
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    41
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    42
    // fill combo boxes with known codecs for given formats
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    43
    void fillCodecs(const QString & format, QComboBox * pVCodecs, QComboBox * pACodecs);
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
    QString getExtension(const QString & format);
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    46
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    47
    // 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
    48
    QString getFileInfo(const QString & filepath);
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    49
};
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    50
01b599d6f72d dos2unix newline fixes on 7 (video recording-)merged files
sheepluva
parents: 7280
diff changeset
    51
#endif // LIBAV_ITERACTION