summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornkessel <hd_brummy@gentoo.org>2014-11-03 17:14:18 +0100
committerJoerg Bornkessel <hd_brummy@gentoo.org>2014-11-03 17:14:18 +0100
commite5491450090b335a7b264fb1691130cfd3cf6a7f (patch)
tree2eafcc509eaa1c75a9045002aceb1d915a9e37f9
parent6187ed4177a4bce1a2c23879354e2d5c08ad66c2 (diff)
downloadvdr-plugin-audiorecorder-e5491450090b335a7b264fb1691130cfd3cf6a7f.tar.gz
vdr-plugin-audiorecorder-e5491450090b335a7b264fb1691130cfd3cf6a7f.tar.bz2
start _rc5, some comments
-rw-r--r--audiorecorder.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/audiorecorder.c b/audiorecorder.c
index b3f53cf..b7d60b1 100644
--- a/audiorecorder.c
+++ b/audiorecorder.c
@@ -35,7 +35,7 @@ using namespace std;
/* --- cPluginAudiorecorder ------------------------------------------------- */
const char *cPluginAudiorecorder::DESCRIPTION = tr("floods your disc with music");
-const char *cPluginAudiorecorder::VERSION = "2.0.0_rc4";
+const char *cPluginAudiorecorder::VERSION = "2.0.0_rc5";
string cPluginAudiorecorder::recdir;
int cPluginAudiorecorder::debug = 0;
@@ -152,7 +152,12 @@ bool cPluginAudiorecorder::Initialize(void)
audio_codecs[0] = "mp2";
audio_codecs[1] = "libmp3lame";
audio_codecs[2] = "mp3";
-
+/* ToDo
+ was soll audio_codecs[2] bewirken?
+ for mp3 encoding wird libmp3lame( external lib von lame) benutzt
+ ffmpeg, libav hat keine interne mp3 encode function
+ may be obsoleted codec from very, very old ffmpeg?
+*/
audio_codecs_translated[0] = tr("mp2");
audio_codecs_translated[1] = tr("mp3");
audio_codecs_translated[2] = tr("mp3");