summaryrefslogtreecommitdiffstats
path: root/akode/lib/encoderpluginhandler.cpp
blob: 247d1aab3507dc8b11f39eaa8d0bb2c8a8725799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*  aKode: EncopderPluginHandler

    Copyright (C) 2004 Allan Sandfeld Jensen <kde@carewolf.com>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#include "akodelib.h"
#include "encoder.h"

namespace aKode {

EncoderPluginHandler::EncoderPluginHandler(const string lib) : encoder_plugin(0)
{
    if (lib.size() > 0)
        load(lib);
}


bool EncoderPluginHandler::load(const string name)
{
    bool res = PluginHandler::load(name+"_encoder");
    if (res)
        encoder_plugin = (EncoderPlugin*)loadPlugin(name+"_encoder");

    return res && encoder_plugin;
}

Encoder* EncoderPluginHandler::openEncoder(File *dest)
{
    if (encoder_plugin)
        return encoder_plugin->openEncoder(dest);
    else
        return 0;
}

} //namespace