summaryrefslogtreecommitdiffstats
path: root/libk9copy/k9audiocodecs.cpp
blob: 23098f2e56a709c5507efd3bcd5ef9eda3822a47 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
//
// C++ Implementation: k9audiocodecs
//
// Description: 
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "k9audiocodecs.h"

#include <tqstringlist.h>

class _k9AudioCodec
{
public:
    _k9AudioCodec():name(""),options(""){};
   _k9AudioCodec(TQString _name,TQString _options) {
      name=_name;
      options=_options; 
   }
   TQString name;
   TQString options;
}; 


k9AudioCodecs::k9AudioCodecs(TQObject *tqparent, const char *name)
 : TQObject(tqparent, name)
{
   m_config=new k9Config();
   TQStringList slLabels=m_config->getCodecLabelsAudio();
   TQStringList slCodecs=m_config->getCodecAudio();
   //adds default codecs
   if (slLabels.count()==0) {
      reset();
      m_config=new k9Config();
      slLabels=m_config->getCodecLabelsAudio();
      slCodecs=m_config->getCodecAudio();
    }
   TQStringList::iterator c=slCodecs.begin();
   int cpt=0;
   for (TQStringList::iterator i=slLabels.begin();i!=slLabels.end() ;++i) {
        TQString o1=(*c);
        c++;
        m_codecs[cpt++]=_k9AudioCodec((*i),o1);
   }
   delete m_config;

}

void k9AudioCodecs::reset() {
      m_codecs[0]=_k9AudioCodec("copy","-oac copy");
      m_codecs[1]=_k9AudioCodec("mp3","-oac lavc -lavcopts acodec=mp3:abitrate=$AUDBR");
      m_codecs[2]=_k9AudioCodec("mp2","-oac lavc -lavcopts acodec=mp2:abitrate=$AUDBR");
      m_codecs[3]=_k9AudioCodec("ac3","-oac lavc -lavcopts acodec=ac3:abitrate=$AUDBR");
      m_codecs[4]=_k9AudioCodec("IMA Adaptive PCM","-oac lavc -lavcopts acodec=adpcm_ima_wav:abitrate=$AUDBR");
      m_codecs[5]=_k9AudioCodec("sonic","-oac lavc -lavcopts acodec=sonic:abitrate=$AUDBR");
      m_codecs[6]=_k9AudioCodec("aac","-oac faac -faacopts br=$AUDBR");
      m_codecs[7]=_k9AudioCodec("mp3 (lame)","-oac mp3lame -lameopts abr:br=$AUDBR");
      save();
}

void k9AudioCodecs::save() {
   m_config=new k9Config();

    TQStringList labels;
    TQStringList options;
    for (TQMap<int,_k9AudioCodec>::iterator i=m_codecs.begin();i!=m_codecs.end();++i) {
        labels << i.data().name;
        options << i.data().options;
    }
    m_config->setCodecLabelsAudio(labels);
    m_config->setCodecAudio(options);
    m_config->save();
    delete m_config;
}




int k9AudioCodecs::count() {
   return m_codecs.count();
}

void k9AudioCodecs::setOptions(int _num,TQString _value) {
    m_codecs[_num].options=_value;
}

void k9AudioCodecs::setCodecName(int _num,TQString _value) {
    m_codecs[_num].name=_value;
}

TQString k9AudioCodecs::getOptions(int _num) {
   return m_codecs[_num].options;
}

TQString k9AudioCodecs::getCodecName(int _num) {
   return m_codecs[_num].name;
}

void k9AudioCodecs::remove(int _num) {
    int nb=count();
    if (nb>0) {
        for(int i=_num;i<nb-1;i++) {
            m_codecs[i]=m_codecs[i+1];
        }
        m_codecs.remove(nb-1);
    }
}

k9AudioCodecs::~k9AudioCodecs()
{
}


#include "k9audiocodecs.moc"