mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 11:36:53 +00:00
Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a840fc9931 | ||
|
|
997ff44b18 | ||
|
|
4dd3c4a184 | ||
|
|
de92daf5f0 | ||
|
|
0fd4062c76 | ||
|
|
d9f977e302 | ||
|
|
ebfc153940 | ||
|
|
f3c52fab6e | ||
|
|
b682dbf0fe | ||
|
|
b4673bdece | ||
|
|
c3b0254b2e | ||
|
|
b8c7fdddb7 | ||
|
|
23a8a72c38 | ||
|
|
f37f428670 | ||
|
|
3235c67256 | ||
|
|
a21ed98163 | ||
|
|
0b38358442 | ||
|
|
9c085fea51 | ||
|
|
dfc66b3d69 | ||
|
|
252bd0e479 | ||
|
|
7657d21d5e | ||
|
|
7b004e9427 | ||
|
|
a08f9de9d3 | ||
|
|
513791d5f1 | ||
|
|
60386835dd | ||
|
|
38f4d3d9b8 | ||
|
|
078f0552fc | ||
|
|
1fd7c90c3b |
31
HISTORY
31
HISTORY
@@ -383,3 +383,34 @@ VDR Plugin 'femon' Revision History
|
|||||||
- Removed error logging from unimplemented ioctl functions.
|
- Removed error logging from unimplemented ioctl functions.
|
||||||
- Removed bitstream parsing from Receive() method.
|
- Removed bitstream parsing from Receive() method.
|
||||||
- Added Chinese translation (Thanks to NanFeng).
|
- Added Chinese translation (Thanks to NanFeng).
|
||||||
|
|
||||||
|
2010-02-01: Version 1.7.6
|
||||||
|
|
||||||
|
- Updated for vdr-1.7.12.
|
||||||
|
- Updated Estonian translation (Thanks to Arthur Konovalov).
|
||||||
|
- Added Lithuanian translation (Thanks to Valdemaras Pipiras).
|
||||||
|
|
||||||
|
2010-03-05: Version 1.7.7
|
||||||
|
|
||||||
|
- Updated for vdr-1.7.13.
|
||||||
|
- Added a setup option to downscale the OSD size.
|
||||||
|
- Updated Estonian translation (Thanks to Arthur Konovalov).
|
||||||
|
|
||||||
|
2010-06-23: Version 1.7.8
|
||||||
|
|
||||||
|
- Fixed device switching.
|
||||||
|
- Added preliminary support for LATM.
|
||||||
|
- Updated Italian translation (Thanks to Diego Pierotto).
|
||||||
|
- Fixed a crash in femon service (Thanks to Wolfgang Astleitner).
|
||||||
|
|
||||||
|
2010-12-27: Version 1.7.9
|
||||||
|
|
||||||
|
- Updated for vdr-1.7.16.
|
||||||
|
- Added Makefile depencency for objects.
|
||||||
|
- Fixed detection of replaying.
|
||||||
|
- Added support for LDFLAGS.
|
||||||
|
|
||||||
|
2011-05-15: Version 1.7.10
|
||||||
|
|
||||||
|
- Updated for vdr-1.7.18.
|
||||||
|
- Added scaling for symbols.
|
||||||
|
|||||||
17
Makefile
17
Makefile
@@ -23,7 +23,8 @@ VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ p
|
|||||||
### The C++ compiler and options:
|
### The C++ compiler and options:
|
||||||
|
|
||||||
CXX ?= g++
|
CXX ?= g++
|
||||||
CXXFLAGS ?= -fPIC -g -O2 -Wall -Wextra -Wswitch-default -Wfloat-equal -Wundef -Wpointer-arith -Wconversion -Wcast-align -Wredundant-decls -Wno-unused-parameter -Woverloaded-virtual -Wno-parentheses
|
CXXFLAGS ?= -fPIC -g -O3 -Wall -Wextra -Wswitch-default -Wfloat-equal -Wundef -Wpointer-arith -Wconversion -Wcast-align -Wredundant-decls -Wno-unused-parameter -Woverloaded-virtual -Wno-parentheses
|
||||||
|
LDFLAGS ?= -Wl,--as-needed
|
||||||
|
|
||||||
### The directory environment:
|
### The directory environment:
|
||||||
|
|
||||||
@@ -31,6 +32,10 @@ VDRDIR = ../../..
|
|||||||
LIBDIR = ../../lib
|
LIBDIR = ../../lib
|
||||||
TMPDIR = /tmp
|
TMPDIR = /tmp
|
||||||
|
|
||||||
|
### Make sure that necessary options are included:
|
||||||
|
|
||||||
|
-include $(VDRDIR)/Make.global
|
||||||
|
|
||||||
### Allow user defined options to overwrite defaults:
|
### Allow user defined options to overwrite defaults:
|
||||||
|
|
||||||
-include $(VDRDIR)/Make.config
|
-include $(VDRDIR)/Make.config
|
||||||
@@ -59,7 +64,7 @@ all-redirect: all
|
|||||||
|
|
||||||
### The object files (add further files here):
|
### The object files (add further files here):
|
||||||
|
|
||||||
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femontools.o femonmpeg.o femonac3.o femonaac.o femonh264.o femonsymbol.o
|
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femontools.o femonmpeg.o femonac3.o femonaac.o femonlatm.o femonh264.o femonsymbol.o
|
||||||
|
|
||||||
### The main target:
|
### The main target:
|
||||||
|
|
||||||
@@ -67,7 +72,7 @@ all: libvdr-$(PLUGIN).so i18n
|
|||||||
|
|
||||||
### Implicit rules:
|
### Implicit rules:
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c Makefile
|
||||||
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
||||||
|
|
||||||
### Dependencies:
|
### Dependencies:
|
||||||
@@ -91,7 +96,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot
|
|||||||
msgfmt -c -o $@ $<
|
msgfmt -c -o $@ $<
|
||||||
|
|
||||||
$(I18Npot): $(wildcard *.c)
|
$(I18Npot): $(wildcard *.c)
|
||||||
xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='Rolf Ahrenberg' -o $@ $^
|
xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name='vdr-$(PLUGIN)' --package-version='$(VERSION)' --msgid-bugs-address='<see README>' -o $@ $^
|
||||||
|
|
||||||
%.po: $(I18Npot)
|
%.po: $(I18Npot)
|
||||||
msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
|
msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
|
||||||
@@ -107,13 +112,13 @@ i18n: $(I18Nmsgs) $(I18Npot)
|
|||||||
### Targets:
|
### Targets:
|
||||||
|
|
||||||
libvdr-$(PLUGIN).so: $(OBJS)
|
libvdr-$(PLUGIN).so: $(OBJS)
|
||||||
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
|
||||||
ifndef FEMON_DEBUG
|
ifndef FEMON_DEBUG
|
||||||
@$(STRIP) $@
|
@$(STRIP) $@
|
||||||
endif
|
endif
|
||||||
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
||||||
|
|
||||||
dist: clean
|
dist: $(I18Npo) clean
|
||||||
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
||||||
@mkdir $(TMPDIR)/$(ARCHIVE)
|
@mkdir $(TMPDIR)/$(ARCHIVE)
|
||||||
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
||||||
|
|||||||
19
femon.c
19
femon.c
@@ -7,18 +7,18 @@
|
|||||||
|
|
||||||
#include <vdr/menu.h>
|
#include <vdr/menu.h>
|
||||||
#include <vdr/remote.h>
|
#include <vdr/remote.h>
|
||||||
#include <vdr/menu.h>
|
#include <vdr/player.h>
|
||||||
#include "femoncfg.h"
|
#include "femoncfg.h"
|
||||||
#include "femonreceiver.h"
|
#include "femonreceiver.h"
|
||||||
#include "femonosd.h"
|
#include "femonosd.h"
|
||||||
#include "femonservice.h"
|
#include "femonservice.h"
|
||||||
#include "femontools.h"
|
#include "femontools.h"
|
||||||
|
|
||||||
#if defined(APIVERSNUM) && APIVERSNUM < 10700
|
#if defined(APIVERSNUM) && APIVERSNUM < 10718
|
||||||
#error "VDR-1.7.0 API version or greater is required!"
|
#error "VDR-1.7.18 API version or greater is required!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char VERSION[] = "1.7.5";
|
static const char VERSION[] = "1.7.10";
|
||||||
static const char DESCRIPTION[] = trNOOP("DVB Signal Information Monitor (OSD)");
|
static const char DESCRIPTION[] = trNOOP("DVB Signal Information Monitor (OSD)");
|
||||||
static const char MAINMENUENTRY[] = trNOOP("Signal Information");
|
static const char MAINMENUENTRY[] = trNOOP("Signal Information");
|
||||||
|
|
||||||
@@ -97,7 +97,7 @@ cOsdObject *cPluginFemon::MainMenuAction(void)
|
|||||||
{
|
{
|
||||||
// Perform the action when selected from the main VDR menu.
|
// Perform the action when selected from the main VDR menu.
|
||||||
debug("%s()\n", __PRETTY_FUNCTION__);
|
debug("%s()\n", __PRETTY_FUNCTION__);
|
||||||
if (cReplayControl::NowReplaying() || (Channels.Count() <= 0))
|
if (cControl::Control() || (Channels.Count() <= 0))
|
||||||
Skins.Message(mtInfo, tr("Femon not available"));
|
Skins.Message(mtInfo, tr("Femon not available"));
|
||||||
else
|
else
|
||||||
return cFemonOsd::Instance(true);
|
return cFemonOsd::Instance(true);
|
||||||
@@ -112,6 +112,7 @@ bool cPluginFemon::SetupParse(const char *Name, const char *Value)
|
|||||||
else if (!strcasecmp(Name, "Position")) femonConfig.position = atoi(Value);
|
else if (!strcasecmp(Name, "Position")) femonConfig.position = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "Skin")) femonConfig.skin = atoi(Value);
|
else if (!strcasecmp(Name, "Skin")) femonConfig.skin = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "Theme")) femonConfig.theme = atoi(Value);
|
else if (!strcasecmp(Name, "Theme")) femonConfig.theme = atoi(Value);
|
||||||
|
else if (!strcasecmp(Name, "Downscale")) femonConfig.downscale = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "RedLimit")) femonConfig.redlimit = atoi(Value);
|
else if (!strcasecmp(Name, "RedLimit")) femonConfig.redlimit = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "GreenLimit")) femonConfig.greenlimit = atoi(Value);
|
else if (!strcasecmp(Name, "GreenLimit")) femonConfig.greenlimit = atoi(Value);
|
||||||
else if (!strcasecmp(Name, "UpdateInterval")) femonConfig.updateinterval = atoi(Value);
|
else if (!strcasecmp(Name, "UpdateInterval")) femonConfig.updateinterval = atoi(Value);
|
||||||
@@ -132,6 +133,8 @@ bool cPluginFemon::Service(const char *Id, void *Data)
|
|||||||
if (strcmp(Id,"FemonService-v1.0") == 0) {
|
if (strcmp(Id,"FemonService-v1.0") == 0) {
|
||||||
if (Data) {
|
if (Data) {
|
||||||
FemonService_v1_0 *data = (FemonService_v1_0*)Data;
|
FemonService_v1_0 *data = (FemonService_v1_0*)Data;
|
||||||
|
if (!cDevice::ActualDevice())
|
||||||
|
return false;
|
||||||
int ndx = cDevice::ActualDevice()->CardIndex();
|
int ndx = cDevice::ActualDevice()->CardIndex();
|
||||||
data->fe_name = getFrontendName(ndx);
|
data->fe_name = getFrontendName(ndx);
|
||||||
data->fe_status = getFrontendStatus(ndx);
|
data->fe_status = getFrontendStatus(ndx);
|
||||||
@@ -193,7 +196,7 @@ cString cPluginFemon::SVDRPCommand(const char *Command, const char *Option, int
|
|||||||
return cString("Cannot open femon plugin while replaying");
|
return cString("Cannot open femon plugin while replaying");
|
||||||
}
|
}
|
||||||
if (!cFemonOsd::Instance())
|
if (!cFemonOsd::Instance())
|
||||||
cRemote::CallPlugin("femon");
|
cRemote::CallPlugin(Name());
|
||||||
return cString("Opening femon plugin");
|
return cString("Opening femon plugin");
|
||||||
}
|
}
|
||||||
else if (strcasecmp(Command, "QUIT") == 0) {
|
else if (strcasecmp(Command, "QUIT") == 0) {
|
||||||
@@ -319,6 +322,9 @@ void cMenuFemonSetup::Setup(void)
|
|||||||
Add(new cMenuEditBoolItem(tr("Position"), &data.position, trVDR("bottom"), trVDR("top")));
|
Add(new cMenuEditBoolItem(tr("Position"), &data.position, trVDR("bottom"), trVDR("top")));
|
||||||
help.Append(tr("Define the position of OSD."));
|
help.Append(tr("Define the position of OSD."));
|
||||||
|
|
||||||
|
Add(new cMenuEditIntItem(tr("Downscale OSD size [%]"), &data.downscale, 0, 20));
|
||||||
|
help.Append(tr("Define the downscale ratio for OSD size."));
|
||||||
|
|
||||||
Add(new cMenuEditIntItem(tr("Red limit [%]"), &data.redlimit, 1, 50));
|
Add(new cMenuEditIntItem(tr("Red limit [%]"), &data.redlimit, 1, 50));
|
||||||
help.Append(tr("Define a limit for red bar, which is used to indicate a bad signal."));
|
help.Append(tr("Define a limit for red bar, which is used to indicate a bad signal."));
|
||||||
|
|
||||||
@@ -360,6 +366,7 @@ void cMenuFemonSetup::Store(void)
|
|||||||
SetupStore("Skin", femonConfig.skin);
|
SetupStore("Skin", femonConfig.skin);
|
||||||
SetupStore("Theme", femonConfig.theme);
|
SetupStore("Theme", femonConfig.theme);
|
||||||
SetupStore("Position", femonConfig.position);
|
SetupStore("Position", femonConfig.position);
|
||||||
|
SetupStore("Downscale", femonConfig.downscale);
|
||||||
SetupStore("RedLimit", femonConfig.redlimit);
|
SetupStore("RedLimit", femonConfig.redlimit);
|
||||||
SetupStore("GreenLimit", femonConfig.greenlimit);
|
SetupStore("GreenLimit", femonConfig.greenlimit);
|
||||||
SetupStore("UpdateInterval", femonConfig.updateinterval);
|
SetupStore("UpdateInterval", femonConfig.updateinterval);
|
||||||
|
|||||||
@@ -17,7 +17,8 @@ enum eAudioCodec {
|
|||||||
AUDIO_CODEC_MPEG2_I,
|
AUDIO_CODEC_MPEG2_I,
|
||||||
AUDIO_CODEC_MPEG2_II,
|
AUDIO_CODEC_MPEG2_II,
|
||||||
AUDIO_CODEC_MPEG2_III,
|
AUDIO_CODEC_MPEG2_III,
|
||||||
AUDIO_CODEC_HEAAC
|
AUDIO_CODEC_HEAAC,
|
||||||
|
AUDIO_CODEC_LATM
|
||||||
};
|
};
|
||||||
|
|
||||||
enum eAudioChannelMode {
|
enum eAudioChannelMode {
|
||||||
|
|||||||
@@ -17,13 +17,14 @@ cFemonConfig::cFemonConfig(void)
|
|||||||
skin = 0;
|
skin = 0;
|
||||||
theme = 0;
|
theme = 0;
|
||||||
position = 1;
|
position = 1;
|
||||||
|
downscale = 0;
|
||||||
redlimit = 33;
|
redlimit = 33;
|
||||||
greenlimit = 66;
|
greenlimit = 66;
|
||||||
updateinterval = 5;
|
updateinterval = 5;
|
||||||
analyzestream = 1;
|
analyzestream = 1;
|
||||||
calcinterval = 20;
|
calcinterval = 20;
|
||||||
usesvdrp = 0;
|
usesvdrp = 0;
|
||||||
svdrpport = 2001;
|
svdrpport = 6419;
|
||||||
strncpy(svdrpip, "0.0.0.0", sizeof(svdrpip));
|
strncpy(svdrpip, "0.0.0.0", sizeof(svdrpip));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ public:
|
|||||||
int skin;
|
int skin;
|
||||||
int theme;
|
int theme;
|
||||||
int position;
|
int position;
|
||||||
|
int downscale;
|
||||||
int redlimit;
|
int redlimit;
|
||||||
int greenlimit;
|
int greenlimit;
|
||||||
int updateinterval;
|
int updateinterval;
|
||||||
|
|||||||
Binary file not shown.
BIN
femonclient/vdr-femonclient-0.0.4.tgz
Normal file
BIN
femonclient/vdr-femonclient-0.0.4.tgz
Normal file
Binary file not shown.
@@ -142,7 +142,7 @@ bool cFemonH264::processVideo(const uint8_t *buf, int len)
|
|||||||
|
|
||||||
case NAL_SEI:
|
case NAL_SEI:
|
||||||
if (!sei_found) {
|
if (!sei_found) {
|
||||||
//debug("H.264: Found NAL SEI at offset %d/%d\n", iny(buf - start), len);
|
//debug("H.264: Found NAL SEI at offset %d/%d\n", int(buf - start), len);
|
||||||
int nal_len = nalUnescape(nal_data, buf + 4, int(end - buf - 4));
|
int nal_len = nalUnescape(nal_data, buf + 4, int(end - buf - 4));
|
||||||
consumed = parseSEI(nal_data, nal_len);
|
consumed = parseSEI(nal_data, nal_len);
|
||||||
if (consumed > 0)
|
if (consumed > 0)
|
||||||
|
|||||||
112
femonlatm.c
Normal file
112
femonlatm.c
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
/*
|
||||||
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
||||||
|
*
|
||||||
|
* See the README file for copyright information and how to reach the author.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "femontools.h"
|
||||||
|
#include "femonlatm.h"
|
||||||
|
|
||||||
|
unsigned int cFemonLATM::s_Bitrates[3][16] =
|
||||||
|
{
|
||||||
|
{0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256, -1}, // MPEG-2 Layer I
|
||||||
|
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, -1}, // MPEG-2 Layer II/III
|
||||||
|
{0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, -1} // MPEG-2 Layer II/III
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned int cFemonLATM::s_Samplerates[4] =
|
||||||
|
{
|
||||||
|
22050, 24000, 16000, -1
|
||||||
|
};
|
||||||
|
|
||||||
|
cFemonLATM::cFemonLATM(cFemonAudioIf *audiohandler)
|
||||||
|
: m_AudioHandler(audiohandler)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
cFemonLATM::~cFemonLATM()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
bool cFemonLATM::processAudio(const uint8_t *buf, int len)
|
||||||
|
{
|
||||||
|
cBitStream bs(buf, len * 8);
|
||||||
|
|
||||||
|
if (!m_AudioHandler)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// skip PES header
|
||||||
|
if (!PesLongEnough(len))
|
||||||
|
return false;
|
||||||
|
bs.skipBits(8 * PesPayloadOffset(buf));
|
||||||
|
|
||||||
|
// MPEG audio detection
|
||||||
|
if (bs.getBits(12) != 0x56E) // syncword
|
||||||
|
return false;
|
||||||
|
|
||||||
|
m_AudioHandler->SetAudioCodec(AUDIO_CODEC_LATM);
|
||||||
|
|
||||||
|
if (bs.getBit() == 0) // id: MPEG-1=1, extension to lower sampling frequencies=0
|
||||||
|
return true; // @todo: lower sampling frequencies support
|
||||||
|
int layer = 3 - bs.getBits(2); // layer: I=11, II=10, III=01
|
||||||
|
bs.skipBit(); // protection bit
|
||||||
|
int bit_rate_index = bs.getBits(4); // bitrate index
|
||||||
|
int sampling_frequency = bs.getBits(2); // sampling frequency
|
||||||
|
bs.skipBit(); // padding bit
|
||||||
|
bs.skipBit(); // private pid
|
||||||
|
int mode = bs.getBits(2); // mode
|
||||||
|
|
||||||
|
switch (mode) {
|
||||||
|
case 0:
|
||||||
|
m_AudioHandler->SetAudioChannel(AUDIO_CHANNEL_MODE_STEREO);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 1:
|
||||||
|
m_AudioHandler->SetAudioChannel(AUDIO_CHANNEL_MODE_JOINT_STEREO);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 2:
|
||||||
|
m_AudioHandler->SetAudioChannel(AUDIO_CHANNEL_MODE_DUAL);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 3:
|
||||||
|
m_AudioHandler->SetAudioChannel(AUDIO_CHANNEL_MODE_SINGLE);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
m_AudioHandler->SetAudioChannel(AUDIO_CHANNEL_MODE_INVALID);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (layer == 3) {
|
||||||
|
m_AudioHandler->SetAudioBitrate(AUDIO_BITRATE_FREE);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
switch (bit_rate_index) {
|
||||||
|
case 0:
|
||||||
|
m_AudioHandler->SetAudioBitrate(AUDIO_BITRATE_FREE);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0xF:
|
||||||
|
m_AudioHandler->SetAudioBitrate(AUDIO_BITRATE_RESERVED);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
m_AudioHandler->SetAudioBitrate(1000 * s_Bitrates[layer][bit_rate_index]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (sampling_frequency) {
|
||||||
|
case 3:
|
||||||
|
m_AudioHandler->SetAudioSamplingFrequency(AUDIO_SAMPLING_FREQUENCY_RESERVED);
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
m_AudioHandler->SetAudioSamplingFrequency(s_Samplerates[sampling_frequency]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
27
femonlatm.h
Normal file
27
femonlatm.h
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
/*
|
||||||
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
||||||
|
*
|
||||||
|
* See the README file for copyright information and how to reach the author.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __FEMONLATM_H
|
||||||
|
#define __FEMONLATM_H
|
||||||
|
|
||||||
|
#include "femonaudio.h"
|
||||||
|
|
||||||
|
class cFemonLATM {
|
||||||
|
private:
|
||||||
|
cFemonAudioIf *m_AudioHandler;
|
||||||
|
|
||||||
|
static unsigned int s_Bitrates[3][16];
|
||||||
|
static unsigned int s_Samplerates[4];
|
||||||
|
|
||||||
|
public:
|
||||||
|
cFemonLATM(cFemonAudioIf *audiohandler);
|
||||||
|
virtual ~cFemonLATM();
|
||||||
|
|
||||||
|
bool processAudio(const uint8_t *buf, int len);
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //__FEMONLATM_H
|
||||||
168
femonosd.c
168
femonosd.c
@@ -25,8 +25,9 @@
|
|||||||
#define OSDROWHEIGHT m_Font->Height() // in pixels
|
#define OSDROWHEIGHT m_Font->Height() // in pixels
|
||||||
#define OSDINFOHEIGHT (OSDROWHEIGHT * 13) // in pixels (13 rows)
|
#define OSDINFOHEIGHT (OSDROWHEIGHT * 13) // in pixels (13 rows)
|
||||||
#define OSDSTATUSHEIGHT (OSDROWHEIGHT * 6) // in pixels (6 rows)
|
#define OSDSTATUSHEIGHT (OSDROWHEIGHT * 6) // in pixels (6 rows)
|
||||||
#define OSDSPACING 5
|
#define OSDSYMBOL(id) femonSymbols.Get(id)
|
||||||
#define OSDROUNDING 10
|
#define OSDSPACING femonSymbols.GetSpacing()
|
||||||
|
#define OSDROUNDING femonSymbols.GetRounding()
|
||||||
#define IS_OSDROUNDING (femonConfig.skin == eFemonSkinElchi)
|
#define IS_OSDROUNDING (femonConfig.skin == eFemonSkinElchi)
|
||||||
#define IS_OSDRESOLUTION(r1, r2) (abs(r1 - r2) < 20)
|
#define IS_OSDRESOLUTION(r1, r2) (abs(r1 - r2) < 20)
|
||||||
#define OSDINFOWIN_Y(offset) (femonConfig.position ? (OSDHEIGHT - OSDINFOHEIGHT + offset) : offset)
|
#define OSDINFOWIN_Y(offset) (femonConfig.position ? (OSDHEIGHT - OSDINFOHEIGHT + offset) : offset)
|
||||||
@@ -144,6 +145,7 @@ public:
|
|||||||
virtual int Width(const char *s) const { return 50; }
|
virtual int Width(const char *s) const { return 50; }
|
||||||
virtual int Height(void) const { return 20; }
|
virtual int Height(void) const { return 20; }
|
||||||
virtual void DrawText(cBitmap *Bitmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {}
|
virtual void DrawText(cBitmap *Bitmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {}
|
||||||
|
virtual void DrawText(cPixmap *Pixmap, int x, int y, const char *s, tColor ColorFg, tColor ColorBg, int Width) const {}
|
||||||
};
|
};
|
||||||
|
|
||||||
cFemonOsd *cFemonOsd::pInstance = NULL;
|
cFemonOsd *cFemonOsd::pInstance = NULL;
|
||||||
@@ -179,8 +181,10 @@ cFemonOsd::cFemonOsd()
|
|||||||
m_UNCValid(false),
|
m_UNCValid(false),
|
||||||
m_FrontendStatusValid(false),
|
m_FrontendStatusValid(false),
|
||||||
m_DisplayMode(femonConfig.displaymode),
|
m_DisplayMode(femonConfig.displaymode),
|
||||||
m_OsdWidth(cOsd::OsdWidth()),
|
m_OsdWidth(cOsd::OsdWidth() * (100 - femonConfig.downscale) / 100),
|
||||||
m_OsdHeight(cOsd::OsdHeight()),
|
m_OsdHeight(cOsd::OsdHeight() * (100 - femonConfig.downscale) / 100),
|
||||||
|
m_OsdLeft(cOsd::OsdLeft() + (cOsd::OsdWidth() * femonConfig.downscale / 200)),
|
||||||
|
m_OsdTop(cOsd::OsdTop() + (cOsd::OsdHeight() * femonConfig.downscale / 200)),
|
||||||
m_InputTime(0),
|
m_InputTime(0),
|
||||||
m_Sleep(),
|
m_Sleep(),
|
||||||
m_Mutex()
|
m_Mutex()
|
||||||
@@ -190,12 +194,13 @@ cFemonOsd::cFemonOsd()
|
|||||||
memset(&m_FrontendStatus, 0, sizeof(m_FrontendStatus));
|
memset(&m_FrontendStatus, 0, sizeof(m_FrontendStatus));
|
||||||
memset(&m_FrontendInfo, 0, sizeof(m_FrontendInfo));
|
memset(&m_FrontendInfo, 0, sizeof(m_FrontendInfo));
|
||||||
m_SvdrpConnection.handle = -1;
|
m_SvdrpConnection.handle = -1;
|
||||||
|
femonSymbols.Refresh();
|
||||||
m_Font = cFont::CreateFont(Setup.FontSml, min(max(Setup.FontSmlSize, MINFONTSIZE), MAXFONTSIZE));
|
m_Font = cFont::CreateFont(Setup.FontSml, min(max(Setup.FontSmlSize, MINFONTSIZE), MAXFONTSIZE));
|
||||||
if (!m_Font || !m_Font->Height()) {
|
if (!m_Font || !m_Font->Height()) {
|
||||||
m_Font = new cFemonDummyFont;
|
m_Font = new cFemonDummyFont;
|
||||||
error("cFemonOsd::cFemonOsd() cannot create required font.");
|
error("cFemonOsd::cFemonOsd() cannot create required font.");
|
||||||
}
|
}
|
||||||
tmp = 5 * bmSymbol[SYMBOL_LOCK].Width() + 6 * OSDSPACING;
|
tmp = 5 * OSDSYMBOL(SYMBOL_LOCK).Width() + 6 * OSDSPACING;
|
||||||
if (OSDWIDTH < tmp) {
|
if (OSDWIDTH < tmp) {
|
||||||
error("cFemonOsd::cFemonOsd() OSD width (%d) smaller than required (%d).", OSDWIDTH, tmp);
|
error("cFemonOsd::cFemonOsd() OSD width (%d) smaller than required (%d).", OSDWIDTH, tmp);
|
||||||
OSDWIDTH = tmp;
|
OSDWIDTH = tmp;
|
||||||
@@ -246,84 +251,84 @@ void cFemonOsd::DrawStatusWindow(void)
|
|||||||
if (m_Osd && channel) {
|
if (m_Osd && channel) {
|
||||||
OSDDRAWSTATUSTITLEBAR(*cString::sprintf("%d%s %s", m_Number ? m_Number : channel->Number(), m_Number ? "-" : "", channel->ShortName(true)));
|
OSDDRAWSTATUSTITLEBAR(*cString::sprintf("%d%s %s", m_Number ? m_Number : channel->Number(), m_Number ? "-" : "", channel->ShortName(true)));
|
||||||
if (m_SvdrpFrontend >= 0) {
|
if (m_SvdrpFrontend >= 0) {
|
||||||
bm = &bmSymbol[SYMBOL_SVDRP];
|
bm = &OSDSYMBOL(SYMBOL_SVDRP);
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
}
|
}
|
||||||
switch (cDevice::ActualDevice()->CardIndex()) {
|
switch (cDevice::ActualDevice()->CardIndex()) {
|
||||||
case 1: bm = &bmSymbol[SYMBOL_ONE]; break;
|
case 1: bm = &OSDSYMBOL(SYMBOL_ONE); break;
|
||||||
case 2: bm = &bmSymbol[SYMBOL_TWO]; break;
|
case 2: bm = &OSDSYMBOL(SYMBOL_TWO); break;
|
||||||
case 3: bm = &bmSymbol[SYMBOL_THREE]; break;
|
case 3: bm = &OSDSYMBOL(SYMBOL_THREE); break;
|
||||||
case 4: bm = &bmSymbol[SYMBOL_FOUR]; break;
|
case 4: bm = &OSDSYMBOL(SYMBOL_FOUR); break;
|
||||||
case 5: bm = &bmSymbol[SYMBOL_FIVE]; break;
|
case 5: bm = &OSDSYMBOL(SYMBOL_FIVE); break;
|
||||||
case 6: bm = &bmSymbol[SYMBOL_SIX]; break;
|
case 6: bm = &OSDSYMBOL(SYMBOL_SIX); break;
|
||||||
case 7: bm = &bmSymbol[SYMBOL_SEVEN]; break;
|
case 7: bm = &OSDSYMBOL(SYMBOL_SEVEN); break;
|
||||||
case 8: bm = &bmSymbol[SYMBOL_EIGHT]; break;
|
case 8: bm = &OSDSYMBOL(SYMBOL_EIGHT); break;
|
||||||
default: bm = &bmSymbol[SYMBOL_ZERO]; break;
|
default: bm = &OSDSYMBOL(SYMBOL_ZERO); break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
bm = &bmSymbol[SYMBOL_DEVICE];
|
bm = &OSDSYMBOL(SYMBOL_DEVICE);
|
||||||
OSDDRAWSTATUSBM(0);
|
OSDDRAWSTATUSBM(0);
|
||||||
if (IS_AUDIO_TRACK(track)) {
|
if (IS_AUDIO_TRACK(track)) {
|
||||||
switch (int(track - ttAudioFirst)) {
|
switch (int(track - ttAudioFirst)) {
|
||||||
case 1: bm = &bmSymbol[SYMBOL_ONE]; break;
|
case 1: bm = &OSDSYMBOL(SYMBOL_ONE); break;
|
||||||
case 2: bm = &bmSymbol[SYMBOL_TWO]; break;
|
case 2: bm = &OSDSYMBOL(SYMBOL_TWO); break;
|
||||||
case 3: bm = &bmSymbol[SYMBOL_THREE]; break;
|
case 3: bm = &OSDSYMBOL(SYMBOL_THREE); break;
|
||||||
case 4: bm = &bmSymbol[SYMBOL_FOUR]; break;
|
case 4: bm = &OSDSYMBOL(SYMBOL_FOUR); break;
|
||||||
case 5: bm = &bmSymbol[SYMBOL_FIVE]; break;
|
case 5: bm = &OSDSYMBOL(SYMBOL_FIVE); break;
|
||||||
case 6: bm = &bmSymbol[SYMBOL_SIX]; break;
|
case 6: bm = &OSDSYMBOL(SYMBOL_SIX); break;
|
||||||
case 7: bm = &bmSymbol[SYMBOL_SEVEN]; break;
|
case 7: bm = &OSDSYMBOL(SYMBOL_SEVEN); break;
|
||||||
case 8: bm = &bmSymbol[SYMBOL_EIGHT]; break;
|
case 8: bm = &OSDSYMBOL(SYMBOL_EIGHT); break;
|
||||||
default: bm = &bmSymbol[SYMBOL_ZERO]; break;
|
default: bm = &OSDSYMBOL(SYMBOL_ZERO); break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
switch (cDevice::PrimaryDevice()->GetAudioChannel()) {
|
switch (cDevice::PrimaryDevice()->GetAudioChannel()) {
|
||||||
case 1: bm = &bmSymbol[SYMBOL_MONO_LEFT]; break;
|
case 1: bm = &OSDSYMBOL(SYMBOL_MONO_LEFT); break;
|
||||||
case 2: bm = &bmSymbol[SYMBOL_MONO_RIGHT]; break;
|
case 2: bm = &OSDSYMBOL(SYMBOL_MONO_RIGHT); break;
|
||||||
default: bm = &bmSymbol[SYMBOL_STEREO]; break;
|
default: bm = &OSDSYMBOL(SYMBOL_STEREO); break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(0);
|
OSDDRAWSTATUSBM(0);
|
||||||
}
|
}
|
||||||
else if (m_Receiver && m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) {
|
else if (m_Receiver && m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) {
|
||||||
if (m_Receiver->AC3_5_1()) bm = &bmSymbol[SYMBOL_DD51];
|
if (m_Receiver->AC3_5_1()) bm = &OSDSYMBOL(SYMBOL_DD51);
|
||||||
else if (m_Receiver->AC3_2_0()) bm = &bmSymbol[SYMBOL_DD20];
|
else if (m_Receiver->AC3_2_0()) bm = &OSDSYMBOL(SYMBOL_DD20);
|
||||||
else bm = &bmSymbol[SYMBOL_DD];
|
else bm = &OSDSYMBOL(SYMBOL_DD);
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
}
|
}
|
||||||
if (m_Receiver) {
|
if (m_Receiver) {
|
||||||
if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 1080))
|
if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 1080))
|
||||||
bm = &bmSymbol[SYMBOL_FORMAT_1080];
|
bm = &OSDSYMBOL(SYMBOL_FORMAT_1080);
|
||||||
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 720))
|
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 720))
|
||||||
bm = &bmSymbol[SYMBOL_FORMAT_720];
|
bm = &OSDSYMBOL(SYMBOL_FORMAT_720);
|
||||||
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 576))
|
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 576))
|
||||||
bm = &bmSymbol[SYMBOL_FORMAT_576];
|
bm = &OSDSYMBOL(SYMBOL_FORMAT_576);
|
||||||
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 480))
|
else if (IS_OSDRESOLUTION(m_Receiver->VideoVerticalSize(), 480))
|
||||||
bm = &bmSymbol[SYMBOL_FORMAT_480];
|
bm = &OSDSYMBOL(SYMBOL_FORMAT_480);
|
||||||
else
|
else
|
||||||
bm = NULL;
|
bm = NULL;
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
switch (m_Receiver->VideoCodec()) {
|
switch (m_Receiver->VideoCodec()) {
|
||||||
case VIDEO_CODEC_MPEG2: bm = &bmSymbol[SYMBOL_MPEG2]; break;
|
case VIDEO_CODEC_MPEG2: bm = &OSDSYMBOL(SYMBOL_MPEG2); break;
|
||||||
case VIDEO_CODEC_H264: bm = &bmSymbol[SYMBOL_H264]; break;
|
case VIDEO_CODEC_H264: bm = &OSDSYMBOL(SYMBOL_H264); break;
|
||||||
default: bm = NULL; break;
|
default: bm = NULL; break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
switch (m_Receiver->VideoFormat()) {
|
switch (m_Receiver->VideoFormat()) {
|
||||||
case VIDEO_FORMAT_PAL: bm = &bmSymbol[SYMBOL_PAL]; break;
|
case VIDEO_FORMAT_PAL: bm = &OSDSYMBOL(SYMBOL_PAL); break;
|
||||||
case VIDEO_FORMAT_NTSC: bm = &bmSymbol[SYMBOL_NTSC]; break;
|
case VIDEO_FORMAT_NTSC: bm = &OSDSYMBOL(SYMBOL_NTSC); break;
|
||||||
default: bm = NULL; break;
|
default: bm = NULL; break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
switch (m_Receiver->VideoAspectRatio()) {
|
switch (m_Receiver->VideoAspectRatio()) {
|
||||||
case VIDEO_ASPECT_RATIO_1_1: bm = &bmSymbol[SYMBOL_AR_1_1]; break;
|
case VIDEO_ASPECT_RATIO_1_1: bm = &OSDSYMBOL(SYMBOL_AR_1_1); break;
|
||||||
case VIDEO_ASPECT_RATIO_4_3: bm = &bmSymbol[SYMBOL_AR_4_3]; break;
|
case VIDEO_ASPECT_RATIO_4_3: bm = &OSDSYMBOL(SYMBOL_AR_4_3); break;
|
||||||
case VIDEO_ASPECT_RATIO_16_9: bm = &bmSymbol[SYMBOL_AR_16_9]; break;
|
case VIDEO_ASPECT_RATIO_16_9: bm = &OSDSYMBOL(SYMBOL_AR_16_9); break;
|
||||||
case VIDEO_ASPECT_RATIO_2_21_1: bm = &bmSymbol[SYMBOL_AR_2_21_1]; break;
|
case VIDEO_ASPECT_RATIO_2_21_1: bm = &OSDSYMBOL(SYMBOL_AR_2_21_1); break;
|
||||||
default: bm = NULL; break;
|
default: bm = NULL; break;
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
}
|
}
|
||||||
if (channel->Ca() > 0xFF) {
|
if (channel->Ca() > 0xFF) {
|
||||||
bm = &bmSymbol[SYMBOL_ENCRYPTED];
|
bm = &OSDSYMBOL(SYMBOL_ENCRYPTED);
|
||||||
OSDDRAWSTATUSBM(OSDSPACING);
|
OSDDRAWSTATUSBM(OSDSPACING);
|
||||||
}
|
}
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
@@ -342,14 +347,14 @@ void cFemonOsd::DrawStatusWindow(void)
|
|||||||
*cString::sprintf("%s:", (m_Receiver && m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) ? tr("AC-3") : tr("Audio")),
|
*cString::sprintf("%s:", (m_Receiver && m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) ? tr("AC-3") : tr("Audio")),
|
||||||
*getBitrateKbits(m_Receiver ? ((m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) ? m_Receiver->AC3Bitrate() : m_Receiver->AudioBitrate()) : (m_SvdrpFrontend >= 0 ? m_SvdrpAudioBitrate : -1.0)));
|
*getBitrateKbits(m_Receiver ? ((m_Receiver->AC3Valid() && IS_DOLBY_TRACK(track)) ? m_Receiver->AC3Bitrate() : m_Receiver->AudioBitrate()) : (m_SvdrpFrontend >= 0 ? m_SvdrpAudioBitrate : -1.0)));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
x = bmSymbol[SYMBOL_LOCK].Width();
|
x = OSDSYMBOL(SYMBOL_LOCK).Width();
|
||||||
y = (OSDROWHEIGHT - bmSymbol[SYMBOL_LOCK].Height()) / 2;
|
y = (OSDROWHEIGHT - OSDSYMBOL(SYMBOL_LOCK).Height()) / 2;
|
||||||
if (m_FrontendStatusValid) {
|
if (m_FrontendStatusValid) {
|
||||||
OSDDRAWSTATUSFRONTEND(1, bmSymbol[SYMBOL_LOCK], FE_HAS_LOCK);
|
OSDDRAWSTATUSFRONTEND(1, OSDSYMBOL(SYMBOL_LOCK), FE_HAS_LOCK);
|
||||||
OSDDRAWSTATUSFRONTEND(2, bmSymbol[SYMBOL_SIGNAL], FE_HAS_SIGNAL);
|
OSDDRAWSTATUSFRONTEND(2, OSDSYMBOL(SYMBOL_SIGNAL), FE_HAS_SIGNAL);
|
||||||
OSDDRAWSTATUSFRONTEND(3, bmSymbol[SYMBOL_CARRIER], FE_HAS_CARRIER);
|
OSDDRAWSTATUSFRONTEND(3, OSDSYMBOL(SYMBOL_CARRIER), FE_HAS_CARRIER);
|
||||||
OSDDRAWSTATUSFRONTEND(4, bmSymbol[SYMBOL_VITERBI], FE_HAS_VITERBI);
|
OSDDRAWSTATUSFRONTEND(4, OSDSYMBOL(SYMBOL_VITERBI), FE_HAS_VITERBI);
|
||||||
OSDDRAWSTATUSFRONTEND(5, bmSymbol[SYMBOL_SYNC], FE_HAS_SYNC);
|
OSDDRAWSTATUSFRONTEND(5, OSDSYMBOL(SYMBOL_SYNC), FE_HAS_SYNC);
|
||||||
}
|
}
|
||||||
OSDDRAWSTATUSBOTTOMBAR();
|
OSDDRAWSTATUSBOTTOMBAR();
|
||||||
m_Osd->Flush();
|
m_Osd->Flush();
|
||||||
@@ -364,6 +369,7 @@ void cFemonOsd::DrawInfoWindow(void)
|
|||||||
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
||||||
|
|
||||||
if (m_Osd && channel) {
|
if (m_Osd && channel) {
|
||||||
|
cDvbTransponderParameters dtp(channel->Parameters());
|
||||||
switch (m_DisplayMode) {
|
switch (m_DisplayMode) {
|
||||||
case eFemonModeTransponder:
|
case eFemonModeTransponder:
|
||||||
OSDDRAWINFOTITLEBAR(tr("Transponder Information"));
|
OSDDRAWINFOTITLEBAR(tr("Transponder Information"));
|
||||||
@@ -393,13 +399,13 @@ void cFemonOsd::DrawInfoWindow(void)
|
|||||||
OSDDRAWINFORIGHT(trVDR("Source"), *cSource::ToString(channel->Source()));
|
OSDDRAWINFORIGHT(trVDR("Source"), *cSource::ToString(channel->Source()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Srate"), *cString::sprintf("%d", channel->Srate()));
|
OSDDRAWINFOLEFT( trVDR("Srate"), *cString::sprintf("%d", channel->Srate()));
|
||||||
OSDDRAWINFORIGHT(trVDR("Polarization"), *cString::sprintf("%c", toupper(channel->Polarization())));
|
OSDDRAWINFORIGHT(trVDR("Polarization"), *cString::sprintf("%c", toupper(dtp.Polarization())));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(channel->Inversion()));
|
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(dtp.Inversion()));
|
||||||
OSDDRAWINFORIGHT(trVDR("CoderateH"), *getCoderate(channel->CoderateH()));
|
OSDDRAWINFORIGHT(trVDR("CoderateH"), *getCoderate(dtp.CoderateH()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("System"), *getSystem(channel->System()));
|
OSDDRAWINFOLEFT( trVDR("System"), *getSystem(dtp.System()));
|
||||||
OSDDRAWINFORIGHT(trVDR("RollOff"), *getRollOff(channel->RollOff()));
|
OSDDRAWINFORIGHT(trVDR("RollOff"), *getRollOff(dtp.RollOff()));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case cSource::stCable:
|
case cSource::stCable:
|
||||||
@@ -409,26 +415,26 @@ void cFemonOsd::DrawInfoWindow(void)
|
|||||||
OSDDRAWINFORIGHT(trVDR("Source"), *cSource::ToString(channel->Source()));
|
OSDDRAWINFORIGHT(trVDR("Source"), *cSource::ToString(channel->Source()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Srate"), *cString::sprintf("%d", channel->Srate()));
|
OSDDRAWINFOLEFT( trVDR("Srate"), *cString::sprintf("%d", channel->Srate()));
|
||||||
OSDDRAWINFORIGHT(trVDR("Modulation"), *getModulation(channel->Modulation()));
|
OSDDRAWINFORIGHT(trVDR("Modulation"), *getModulation(dtp.Modulation()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(channel->Inversion()));
|
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(dtp.Inversion()));
|
||||||
OSDDRAWINFORIGHT(trVDR("CoderateH"), *getCoderate(channel->CoderateH()));
|
OSDDRAWINFORIGHT(trVDR("CoderateH"), *getCoderate(dtp.CoderateH()));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case cSource::stTerr:
|
case cSource::stTerr:
|
||||||
OSDDRAWINFOLINE(*cString::sprintf("DVB-T #%d - %s", (m_SvdrpFrontend >= 0) ? m_SvdrpFrontend : cDevice::ActualDevice()->CardIndex(), m_FrontendInfo.name));
|
OSDDRAWINFOLINE(*cString::sprintf("DVB-T #%d - %s", (m_SvdrpFrontend >= 0) ? m_SvdrpFrontend : cDevice::ActualDevice()->CardIndex(), m_FrontendInfo.name));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Frequency"), *getFrequencyMHz(channel->Frequency()));
|
OSDDRAWINFOLEFT( trVDR("Frequency"), *getFrequencyMHz(channel->Frequency()));
|
||||||
OSDDRAWINFORIGHT(trVDR("Transmission"), *getTransmission(channel->Transmission()));
|
OSDDRAWINFORIGHT(trVDR("Transmission"), *getTransmission(dtp.Transmission()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Bandwidth"), *getBandwidth(channel->Bandwidth()));
|
OSDDRAWINFOLEFT( trVDR("Bandwidth"), *getBandwidth(dtp.Bandwidth()));
|
||||||
OSDDRAWINFORIGHT(trVDR("Modulation"), *getModulation(channel->Modulation()));
|
OSDDRAWINFORIGHT(trVDR("Modulation"), *getModulation(dtp.Modulation()));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(channel->Inversion()));
|
OSDDRAWINFOLEFT( trVDR("Inversion"), *getInversion(dtp.Inversion()));
|
||||||
OSDDRAWINFORIGHT(tr ("Coderate"), *cString::sprintf("%s (H) %s (L)", *getCoderate(channel->CoderateH()), *getCoderate(channel->CoderateL())));
|
OSDDRAWINFORIGHT(tr ("Coderate"), *cString::sprintf("%s (H) %s (L)", *getCoderate(dtp.CoderateH()), *getCoderate(dtp.CoderateL())));
|
||||||
offset += OSDROWHEIGHT;
|
offset += OSDROWHEIGHT;
|
||||||
OSDDRAWINFOLEFT( trVDR("Hierarchy"), *getHierarchy(channel->Hierarchy()));
|
OSDDRAWINFOLEFT( trVDR("Hierarchy"), *getHierarchy(dtp.Hierarchy()));
|
||||||
OSDDRAWINFORIGHT(trVDR("Guard"), *getGuard(channel->Guard()));
|
OSDDRAWINFORIGHT(trVDR("Guard"), *getGuard(dtp.Guard()));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@@ -575,8 +581,6 @@ void cFemonOsd::Action(void)
|
|||||||
void cFemonOsd::Show(void)
|
void cFemonOsd::Show(void)
|
||||||
{
|
{
|
||||||
debug("%s()\n", __PRETTY_FUNCTION__);
|
debug("%s()\n", __PRETTY_FUNCTION__);
|
||||||
int apid[2] = {0, 0};
|
|
||||||
int dpid[2] = {0, 0};
|
|
||||||
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
||||||
cString dev = cString::sprintf(FRONTEND_DEVICE, cDevice::ActualDevice()->CardIndex(), 0);
|
cString dev = cString::sprintf(FRONTEND_DEVICE, cDevice::ActualDevice()->CardIndex(), 0);
|
||||||
m_Frontend = open(dev, O_RDONLY | O_NONBLOCK);
|
m_Frontend = open(dev, O_RDONLY | O_NONBLOCK);
|
||||||
@@ -599,7 +603,7 @@ void cFemonOsd::Show(void)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_Osd = cOsdProvider::NewOsd(cOsd::OsdLeft(), cOsd::OsdTop());
|
m_Osd = cOsdProvider::NewOsd(m_OsdLeft, m_OsdTop);
|
||||||
if (m_Osd) {
|
if (m_Osd) {
|
||||||
tArea Areas1[] = { { 0, 0, OSDWIDTH - 1, OSDHEIGHT - 1, 8 } };
|
tArea Areas1[] = { { 0, 0, OSDWIDTH - 1, OSDHEIGHT - 1, 8 } };
|
||||||
if (Setup.AntiAlias && m_Osd->CanHandleAreas(Areas1, sizeof(Areas1) / sizeof(tArea)) == oeOk) {
|
if (Setup.AntiAlias && m_Osd->CanHandleAreas(Areas1, sizeof(Areas1) / sizeof(tArea)) == oeOk) {
|
||||||
@@ -621,9 +625,7 @@ void cFemonOsd::Show(void)
|
|||||||
if (femonConfig.analyzestream) {
|
if (femonConfig.analyzestream) {
|
||||||
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
||||||
if (channel) {
|
if (channel) {
|
||||||
IS_AUDIO_TRACK(track) ? apid[0] = channel->Apid(int(track - ttAudioFirst)) : apid[0] = channel->Apid(0);
|
m_Receiver = new cFemonReceiver(channel->Vtype(), channel->Vpid(), channel->Apid(IS_AUDIO_TRACK(track) ? int(track - ttAudioFirst) : 0), channel->Dpid(IS_DOLBY_TRACK(track) ? int(track - ttDolbyFirst) : 0));
|
||||||
IS_DOLBY_TRACK(track) ? dpid[0] = channel->Dpid(int(track - ttDolbyFirst)) : dpid[0] = channel->Dpid(0);
|
|
||||||
m_Receiver = new cFemonReceiver(channel->GetChannelID(), channel->Ca(), channel->Vtype(), channel->Vpid(), apid, dpid);
|
|
||||||
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -634,8 +636,6 @@ void cFemonOsd::Show(void)
|
|||||||
void cFemonOsd::ChannelSwitch(const cDevice * device, int channelNumber)
|
void cFemonOsd::ChannelSwitch(const cDevice * device, int channelNumber)
|
||||||
{
|
{
|
||||||
debug("%s(%d,%d)\n", __PRETTY_FUNCTION__, device->DeviceNumber(), channelNumber);
|
debug("%s(%d,%d)\n", __PRETTY_FUNCTION__, device->DeviceNumber(), channelNumber);
|
||||||
int apid[2] = {0, 0};
|
|
||||||
int dpid[2] = {0, 0};
|
|
||||||
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
||||||
if (!device->IsPrimaryDevice() || !channelNumber || cDevice::PrimaryDevice()->CurrentChannel() != channelNumber)
|
if (!device->IsPrimaryDevice() || !channelNumber || cDevice::PrimaryDevice()->CurrentChannel() != channelNumber)
|
||||||
return;
|
return;
|
||||||
@@ -668,9 +668,7 @@ void cFemonOsd::ChannelSwitch(const cDevice * device, int channelNumber)
|
|||||||
if (femonConfig.analyzestream) {
|
if (femonConfig.analyzestream) {
|
||||||
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
||||||
if (channel) {
|
if (channel) {
|
||||||
IS_AUDIO_TRACK(track) ? apid[0] = channel->Apid(int(track - ttAudioFirst)) : apid[0] = channel->Apid(0);
|
m_Receiver = new cFemonReceiver(channel->Vtype(), channel->Vpid(), channel->Apid(IS_AUDIO_TRACK(track) ? int(track - ttAudioFirst) : 0), channel->Dpid(IS_DOLBY_TRACK(track) ? int(track - ttDolbyFirst) : 0));
|
||||||
IS_DOLBY_TRACK(track) ? dpid[0] = channel->Dpid(int(track - ttDolbyFirst)) : dpid[0] = channel->Dpid(0);
|
|
||||||
m_Receiver = new cFemonReceiver(channel->GetChannelID(), channel->Ca(), channel->Vtype(), channel->Vpid(), apid, dpid);
|
|
||||||
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -679,8 +677,6 @@ void cFemonOsd::ChannelSwitch(const cDevice * device, int channelNumber)
|
|||||||
void cFemonOsd::SetAudioTrack(int Index, const char * const *Tracks)
|
void cFemonOsd::SetAudioTrack(int Index, const char * const *Tracks)
|
||||||
{
|
{
|
||||||
debug("%s()\n", __PRETTY_FUNCTION__);
|
debug("%s()\n", __PRETTY_FUNCTION__);
|
||||||
int apid[2] = {0, 0};
|
|
||||||
int dpid[2] = {0, 0};
|
|
||||||
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
eTrackType track = cDevice::PrimaryDevice()->GetCurrentAudioTrack();
|
||||||
if (m_Receiver) {
|
if (m_Receiver) {
|
||||||
m_Receiver->Deactivate();
|
m_Receiver->Deactivate();
|
||||||
@@ -689,9 +685,7 @@ void cFemonOsd::SetAudioTrack(int Index, const char * const *Tracks)
|
|||||||
if (femonConfig.analyzestream) {
|
if (femonConfig.analyzestream) {
|
||||||
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
||||||
if (channel) {
|
if (channel) {
|
||||||
IS_AUDIO_TRACK(track) ? apid[0] = channel->Apid(int(track - ttAudioFirst)) : apid[0] = channel->Apid(0);
|
m_Receiver = new cFemonReceiver(channel->Vtype(), channel->Vpid(), channel->Apid(IS_AUDIO_TRACK(track) ? int(track - ttAudioFirst) : 0), channel->Dpid(IS_DOLBY_TRACK(track) ? int(track - ttDolbyFirst) : 0));
|
||||||
IS_DOLBY_TRACK(track) ? dpid[0] = channel->Dpid(int(track - ttDolbyFirst)) : dpid[0] = channel->Dpid(0);
|
|
||||||
m_Receiver = new cFemonReceiver(channel->GetChannelID(), channel->Ca(), channel->Vtype(), channel->Vpid(), apid, dpid);
|
|
||||||
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
cDevice::ActualDevice()->AttachReceiver(m_Receiver);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -706,7 +700,7 @@ bool cFemonOsd::DeviceSwitch(int direction)
|
|||||||
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
cChannel *channel = Channels.GetByNumber(cDevice::CurrentChannel());
|
||||||
if (channel) {
|
if (channel) {
|
||||||
for (int i = 0; i < cDevice::NumDevices() - 1; i++) {
|
for (int i = 0; i < cDevice::NumDevices() - 1; i++) {
|
||||||
if (direction) {
|
if (direction >= 0) {
|
||||||
if (++device >= cDevice::NumDevices())
|
if (++device >= cDevice::NumDevices())
|
||||||
device = 0;
|
device = 0;
|
||||||
}
|
}
|
||||||
@@ -721,7 +715,7 @@ bool cFemonOsd::DeviceSwitch(int direction)
|
|||||||
cDevice::GetDevice(device)->SwitchChannel(channel, true);
|
cDevice::GetDevice(device)->SwitchChannel(channel, true);
|
||||||
if (cDevice::GetDevice(device) == cDevice::PrimaryDevice())
|
if (cDevice::GetDevice(device) == cDevice::PrimaryDevice())
|
||||||
cDevice::GetDevice(device)->ForceTransferMode();
|
cDevice::GetDevice(device)->ForceTransferMode();
|
||||||
cControl::Launch(new cTransferControl(cDevice::GetDevice(device), channel->GetChannelID(), channel->Vpid(), channel->Apids(), channel->Dpids(), channel->Spids()));
|
cControl::Launch(new cTransferControl(cDevice::GetDevice(device), channel));
|
||||||
cStatus::MsgChannelSwitch(cDevice::PrimaryDevice(), channel->Number());
|
cStatus::MsgChannelSwitch(cDevice::PrimaryDevice(), channel->Number());
|
||||||
return (true);
|
return (true);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,6 +50,8 @@ private:
|
|||||||
int m_DisplayMode;
|
int m_DisplayMode;
|
||||||
int m_OsdWidth;
|
int m_OsdWidth;
|
||||||
int m_OsdHeight;
|
int m_OsdHeight;
|
||||||
|
int m_OsdLeft;
|
||||||
|
int m_OsdTop;
|
||||||
cFont *m_Font;
|
cFont *m_Font;
|
||||||
cTimeMs m_InputTime;
|
cTimeMs m_InputTime;
|
||||||
cCondWait m_Sleep;
|
cCondWait m_Sleep;
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
#include "femoncfg.h"
|
#include "femoncfg.h"
|
||||||
#include "femonreceiver.h"
|
#include "femonreceiver.h"
|
||||||
|
|
||||||
cFemonReceiver::cFemonReceiver(tChannelID ChannelID, int Ca, int Vtype, int Vpid, int Apid[], int Dpid[])
|
cFemonReceiver::cFemonReceiver(int Vtype, int Vpid, int Apid, int Dpid)
|
||||||
: cReceiver(ChannelID, -1, Vpid, Apid, Dpid, NULL),
|
: cThread("femon receiver"),
|
||||||
cThread("femon receiver"),
|
|
||||||
m_Mutex(),
|
m_Mutex(),
|
||||||
m_Sleep(),
|
m_Sleep(),
|
||||||
m_Active(false),
|
m_Active(false),
|
||||||
m_DetectH264(this),
|
m_DetectH264(this),
|
||||||
m_DetectMPEG(this, this),
|
m_DetectMPEG(this, this),
|
||||||
m_DetectAAC(this),
|
m_DetectAAC(this),
|
||||||
|
m_DetectLATM(this),
|
||||||
m_DetectAC3(this),
|
m_DetectAC3(this),
|
||||||
m_VideoBuffer(KILOBYTE(512), TS_SIZE, false, "Femon video"),
|
m_VideoBuffer(KILOBYTE(512), TS_SIZE, false, "Femon video"),
|
||||||
m_VideoType(Vtype),
|
m_VideoType(Vtype),
|
||||||
@@ -27,18 +27,22 @@ cFemonReceiver::cFemonReceiver(tChannelID ChannelID, int Ca, int Vtype, int Vpid
|
|||||||
m_VideoBitrate(0.0),
|
m_VideoBitrate(0.0),
|
||||||
m_VideoValid(false),
|
m_VideoValid(false),
|
||||||
m_AudioBuffer(KILOBYTE(256), TS_SIZE, false, "Femon audio"),
|
m_AudioBuffer(KILOBYTE(256), TS_SIZE, false, "Femon audio"),
|
||||||
m_AudioPid(Apid[0]),
|
m_AudioPid(Apid),
|
||||||
m_AudioPacketCount(0),
|
m_AudioPacketCount(0),
|
||||||
m_AudioBitrate(0.0),
|
m_AudioBitrate(0.0),
|
||||||
m_AudioValid(false),
|
m_AudioValid(false),
|
||||||
m_AC3Buffer(KILOBYTE(256), TS_SIZE, false, "Femon AC3"),
|
m_AC3Buffer(KILOBYTE(256), TS_SIZE, false, "Femon AC3"),
|
||||||
m_AC3Pid(Dpid[0]),
|
m_AC3Pid(Dpid),
|
||||||
m_AC3PacketCount(0),
|
m_AC3PacketCount(0),
|
||||||
m_AC3Bitrate(0),
|
m_AC3Bitrate(0),
|
||||||
m_AC3Valid(false)
|
m_AC3Valid(false)
|
||||||
{
|
{
|
||||||
debug("%s()\n", __PRETTY_FUNCTION__);
|
debug("%s()\n", __PRETTY_FUNCTION__);
|
||||||
|
|
||||||
|
AddPid(m_VideoPid);
|
||||||
|
AddPid(m_AudioPid);
|
||||||
|
AddPid(m_AC3Pid);
|
||||||
|
|
||||||
m_VideoBuffer.SetTimeouts(0, 100);
|
m_VideoBuffer.SetTimeouts(0, 100);
|
||||||
m_AudioBuffer.SetTimeouts(0, 100);
|
m_AudioBuffer.SetTimeouts(0, 100);
|
||||||
m_AC3Buffer.SetTimeouts(0, 100);
|
m_AC3Buffer.SetTimeouts(0, 100);
|
||||||
@@ -141,7 +145,7 @@ void cFemonReceiver::Action(void)
|
|||||||
while (Data = m_VideoBuffer.Get(Length)) {
|
while (Data = m_VideoBuffer.Get(Length)) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
if (*Data != TS_SYNC_BYTE) {
|
if (*Data != TS_SYNC_BYTE) {
|
||||||
for (int i = 1; i < Length; ++i) {
|
for (int i = 1; i < Length; ++i) {
|
||||||
if (Data[i] == TS_SYNC_BYTE) {
|
if (Data[i] == TS_SYNC_BYTE) {
|
||||||
@@ -178,7 +182,7 @@ void cFemonReceiver::Action(void)
|
|||||||
while (Data = m_AudioBuffer.Get(Length)) {
|
while (Data = m_AudioBuffer.Get(Length)) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
if (*Data != TS_SYNC_BYTE) {
|
if (*Data != TS_SYNC_BYTE) {
|
||||||
for (int i = 1; i < Length; ++i) {
|
for (int i = 1; i < Length; ++i) {
|
||||||
if (Data[i] == TS_SYNC_BYTE) {
|
if (Data[i] == TS_SYNC_BYTE) {
|
||||||
@@ -191,7 +195,7 @@ void cFemonReceiver::Action(void)
|
|||||||
}
|
}
|
||||||
processed = true;
|
processed = true;
|
||||||
if (const uint8_t *p = m_AudioAssembler.GetPes(len)) {
|
if (const uint8_t *p = m_AudioAssembler.GetPes(len)) {
|
||||||
if (m_DetectAAC.processAudio(p, len) || m_DetectMPEG.processAudio(p, len))
|
if (m_DetectAAC.processAudio(p, len) || m_DetectLATM.processAudio(p, len) || m_DetectMPEG.processAudio(p, len))
|
||||||
m_AudioValid = true;
|
m_AudioValid = true;
|
||||||
m_AudioAssembler.Reset();
|
m_AudioAssembler.Reset();
|
||||||
}
|
}
|
||||||
@@ -203,7 +207,7 @@ void cFemonReceiver::Action(void)
|
|||||||
while (Data = m_AC3Buffer.Get(Length)) {
|
while (Data = m_AC3Buffer.Get(Length)) {
|
||||||
if (!m_Active || (Length < TS_SIZE))
|
if (!m_Active || (Length < TS_SIZE))
|
||||||
break;
|
break;
|
||||||
Length = TS_SIZE;
|
Length = TS_SIZE;
|
||||||
if (*Data != TS_SYNC_BYTE) {
|
if (*Data != TS_SYNC_BYTE) {
|
||||||
for (int i = 1; i < Length; ++i) {
|
for (int i = 1; i < Length; ++i) {
|
||||||
if (Data[i] == TS_SYNC_BYTE) {
|
if (Data[i] == TS_SYNC_BYTE) {
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
#include "femonh264.h"
|
#include "femonh264.h"
|
||||||
#include "femonmpeg.h"
|
#include "femonmpeg.h"
|
||||||
#include "femonaac.h"
|
#include "femonaac.h"
|
||||||
|
#include "femonlatm.h"
|
||||||
#include "femonac3.h"
|
#include "femonac3.h"
|
||||||
#include "femonaudio.h"
|
#include "femonaudio.h"
|
||||||
#include "femonvideo.h"
|
#include "femonvideo.h"
|
||||||
@@ -28,6 +29,7 @@ private:
|
|||||||
cFemonH264 m_DetectH264;
|
cFemonH264 m_DetectH264;
|
||||||
cFemonMPEG m_DetectMPEG;
|
cFemonMPEG m_DetectMPEG;
|
||||||
cFemonAAC m_DetectAAC;
|
cFemonAAC m_DetectAAC;
|
||||||
|
cFemonLATM m_DetectLATM;
|
||||||
cFemonAC3 m_DetectAC3;
|
cFemonAC3 m_DetectAC3;
|
||||||
|
|
||||||
cRingBufferLinear m_VideoBuffer;
|
cRingBufferLinear m_VideoBuffer;
|
||||||
@@ -106,7 +108,7 @@ public:
|
|||||||
m_AC3Info.lfe = onoff; }
|
m_AC3Info.lfe = onoff; }
|
||||||
|
|
||||||
public:
|
public:
|
||||||
cFemonReceiver(tChannelID ChannelID, int Ca, int Vtype, int Vpid, int Apid[], int Dpid[]);
|
cFemonReceiver(int Vtype, int Vpid, int Apid, int Dpid);
|
||||||
virtual ~cFemonReceiver();
|
virtual ~cFemonReceiver();
|
||||||
void Deactivate(void);
|
void Deactivate(void);
|
||||||
|
|
||||||
|
|||||||
175
femonsymbol.c
175
femonsymbol.c
@@ -5,6 +5,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <vdr/device.h>
|
||||||
|
#include "femontools.h"
|
||||||
#include "femonsymbol.h"
|
#include "femonsymbol.h"
|
||||||
|
|
||||||
#include "symbols/stereo.xpm"
|
#include "symbols/stereo.xpm"
|
||||||
@@ -43,41 +45,140 @@
|
|||||||
#include "symbols/format576.xpm"
|
#include "symbols/format576.xpm"
|
||||||
#include "symbols/format480.xpm"
|
#include "symbols/format480.xpm"
|
||||||
|
|
||||||
cBitmap bmSymbol[SYMBOL_MAX_COUNT] =
|
static cBitmap bmStereo(stereo_xpm);
|
||||||
|
static cBitmap bmMonoLeft(monoleft_xpm);
|
||||||
|
static cBitmap bmMonoRight(monoright_xpm);
|
||||||
|
static cBitmap bmDolbyDigital(dolbydigital_xpm);
|
||||||
|
static cBitmap bmDolbyDigital20(dolbydigital20_xpm);
|
||||||
|
static cBitmap bmDolbyDigital51(dolbydigital51_xpm);
|
||||||
|
static cBitmap bmMpeg2(mpeg2_xpm);
|
||||||
|
static cBitmap bmH264(h264_xpm);
|
||||||
|
static cBitmap bmPal(pal_xpm);
|
||||||
|
static cBitmap bmNtsc(ntsc_xpm);
|
||||||
|
static cBitmap bmEncrypted(encrypted_xpm);
|
||||||
|
static cBitmap bmSvdrp(svdrp_xpm);
|
||||||
|
static cBitmap bmLock(lock_xpm);
|
||||||
|
static cBitmap bmSignal(signal_xpm);
|
||||||
|
static cBitmap bmCarrier(carrier_xpm);
|
||||||
|
static cBitmap bmViterbi(viterbi_xpm);
|
||||||
|
static cBitmap bmSync(sync_xpm);
|
||||||
|
static cBitmap bmAspectRatio11(ar11_xpm);
|
||||||
|
static cBitmap bmAspectRatio169(ar169_xpm);
|
||||||
|
static cBitmap bmAspectRatio2211(ar2211_xpm);
|
||||||
|
static cBitmap bmAspectRatio43(ar43_xpm);
|
||||||
|
static cBitmap bmDevice(device_xpm);
|
||||||
|
static cBitmap bmZero(zero_xpm);
|
||||||
|
static cBitmap bmOne(one_xpm);
|
||||||
|
static cBitmap bmTwo(two_xpm);
|
||||||
|
static cBitmap bmThree(three_xpm);
|
||||||
|
static cBitmap bmFour(four_xpm);
|
||||||
|
static cBitmap bmFive(five_xpm);
|
||||||
|
static cBitmap bmSix(six_xpm);
|
||||||
|
static cBitmap bmSeven(seven_xpm);
|
||||||
|
static cBitmap bmEight(eight_xpm);
|
||||||
|
static cBitmap bmFormat1080(format1080_xpm);
|
||||||
|
static cBitmap bmFormat720(format720_xpm);
|
||||||
|
static cBitmap bmFormat576(format576_xpm);
|
||||||
|
static cBitmap bmFormat480(format480_xpm);
|
||||||
|
|
||||||
|
cFemonSymbolCache femonSymbols;
|
||||||
|
|
||||||
|
cFemonSymbolCache::cFemonSymbolCache()
|
||||||
|
: xFactorM(1.0),
|
||||||
|
yFactorM(1.0),
|
||||||
|
antiAliasM(false)
|
||||||
{
|
{
|
||||||
cBitmap(stereo_xpm), // SYMBOL_STEREO
|
Populate();
|
||||||
cBitmap(monoleft_xpm), // SYMBOL_MONO_LEFT
|
}
|
||||||
cBitmap(monoright_xpm), // SYMBOL_MONO_RIGHT
|
|
||||||
cBitmap(dolbydigital_xpm), // SYMBOL_DD
|
cFemonSymbolCache::~cFemonSymbolCache()
|
||||||
cBitmap(dolbydigital20_xpm), // SYMBOL_DD20
|
{
|
||||||
cBitmap(dolbydigital51_xpm), // SYMBOL_DD51
|
Flush();
|
||||||
cBitmap(mpeg2_xpm), // SYMBOL_MPEG2
|
}
|
||||||
cBitmap(h264_xpm), // SYMBOL_H264
|
|
||||||
cBitmap(pal_xpm), // SYMBOL_PAL
|
void cFemonSymbolCache::Refresh()
|
||||||
cBitmap(ntsc_xpm), // SYMBOL_NTSC
|
{
|
||||||
cBitmap(encrypted_xpm), // SYMBOL_ENCRYPTED
|
int width, height;
|
||||||
cBitmap(svdrp_xpm), // SYMBOL_SVDRP
|
double aspect, xfactor, yfactor;
|
||||||
cBitmap(lock_xpm), // SYMBOL_LOCK
|
cDevice::PrimaryDevice()->GetOsdSize(width, height, aspect);
|
||||||
cBitmap(signal_xpm), // SYMBOL_SIGNAL
|
debug("%s(): %dx%d\n", __PRETTY_FUNCTION__, width, height);
|
||||||
cBitmap(carrier_xpm), // SYMBOL_CARRIER
|
xfactor = (double)width / DEFAULT_WIDTH;
|
||||||
cBitmap(viterbi_xpm), // SYMBOL_VITERBI
|
yfactor = (double)height / DEFAULT_HEIGHT;
|
||||||
cBitmap(sync_xpm), // SYMBOL_SYNC
|
if (!DoubleEqual(xfactor, xFactorM) || !DoubleEqual(yfactor, yFactorM)) {
|
||||||
cBitmap(ar11_xpm), // SYMBOL_AR_1_1
|
xFactorM = xfactor;
|
||||||
cBitmap(ar169_xpm), // SYMBOL_AR_16_9
|
yFactorM = yfactor;
|
||||||
cBitmap(ar2211_xpm), // SYMBOL_AR_2_21_1
|
Populate();
|
||||||
cBitmap(ar43_xpm), // SYMBOL_AR_4_3
|
}
|
||||||
cBitmap(device_xpm), // SYMBOL_DEVICE
|
}
|
||||||
cBitmap(zero_xpm), // SYMBOL_ZERO
|
|
||||||
cBitmap(one_xpm), // SYMBOL_ONE
|
bool cFemonSymbolCache::Populate(void)
|
||||||
cBitmap(two_xpm), // SYMBOL_TWO
|
{
|
||||||
cBitmap(three_xpm), // SYMBOL_THREE
|
debug("%s(): %.02fx%.02f\n", __PRETTY_FUNCTION__, xFactorM, yFactorM);
|
||||||
cBitmap(four_xpm), // SYMBOL_FOUR
|
if (!DoubleEqual(0.0, xFactorM) || !DoubleEqual(0.0, yFactorM)) {
|
||||||
cBitmap(five_xpm), // SYMBOL_FIVE
|
Flush();
|
||||||
cBitmap(six_xpm), // SYMBOL_SIX
|
|
||||||
cBitmap(seven_xpm), // SYMBOL_SEVEN
|
// pushing order must follow the enumeration - keep original proportions except for frontend status ones
|
||||||
cBitmap(eight_xpm), // SYMBOL_EIGHT
|
cacheM.Append(bmStereo.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_STEREO
|
||||||
cBitmap(format1080_xpm), // SYMBOL_FORMAT_1080
|
cacheM.Append(bmMonoLeft.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_LEFT
|
||||||
cBitmap(format720_xpm), // SYMBOL_FORMAT_720
|
cacheM.Append(bmMonoRight.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MONO_RIGHT
|
||||||
cBitmap(format576_xpm), // SYMBOL_FORMAT_576
|
cacheM.Append(bmDolbyDigital.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_DD
|
||||||
cBitmap(format480_xpm) // SYMBOL_FORMAT_480
|
cacheM.Append(bmDolbyDigital20.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_DD20
|
||||||
};
|
cacheM.Append(bmDolbyDigital51.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_DD51
|
||||||
|
cacheM.Append(bmMpeg2.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_MPEG2
|
||||||
|
cacheM.Append(bmH264.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_H264
|
||||||
|
cacheM.Append(bmPal.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_PAL
|
||||||
|
cacheM.Append(bmNtsc.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_NTSC
|
||||||
|
cacheM.Append(bmEncrypted.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_ENCRYPTED
|
||||||
|
cacheM.Append(bmSvdrp.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_SVDRP
|
||||||
|
cacheM.Append(bmLock.Scaled(xFactorM, yFactorM, antiAliasM)); // SYMBOL_LOCK
|
||||||
|
cacheM.Append(bmSignal.Scaled(xFactorM, yFactorM, antiAliasM)); // SYMBOL_SIGNAL
|
||||||
|
cacheM.Append(bmCarrier.Scaled(xFactorM, yFactorM, antiAliasM)); // SYMBOL_CARRIER
|
||||||
|
cacheM.Append(bmViterbi.Scaled(xFactorM, yFactorM, antiAliasM)); // SYMBOL_VITERBI
|
||||||
|
cacheM.Append(bmSync.Scaled(xFactorM, yFactorM, antiAliasM)); // SYMBOL_SYNC
|
||||||
|
cacheM.Append(bmAspectRatio11.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_AR_1_1
|
||||||
|
cacheM.Append(bmAspectRatio169.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_AR_16_9
|
||||||
|
cacheM.Append(bmAspectRatio2211.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_AR_2_21_1
|
||||||
|
cacheM.Append(bmAspectRatio43.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_AR_4_3
|
||||||
|
cacheM.Append(bmDevice.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_DEVICE
|
||||||
|
cacheM.Append(bmZero.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_ZERO
|
||||||
|
cacheM.Append(bmOne.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_ONE
|
||||||
|
cacheM.Append(bmTwo.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_TWO
|
||||||
|
cacheM.Append(bmThree.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_THREE
|
||||||
|
cacheM.Append(bmFour.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FOUR
|
||||||
|
cacheM.Append(bmFive.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FIVE
|
||||||
|
cacheM.Append(bmSix.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_SIX
|
||||||
|
cacheM.Append(bmSeven.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_SEVEN
|
||||||
|
cacheM.Append(bmEight.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_EIGHT
|
||||||
|
cacheM.Append(bmFormat1080.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FORMAT_1080
|
||||||
|
cacheM.Append(bmFormat720.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FORMAT_720
|
||||||
|
cacheM.Append(bmFormat576.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FORMAT_576
|
||||||
|
cacheM.Append(bmFormat480.Scaled(yFactorM, yFactorM, antiAliasM)); // SYMBOL_FORMAT_480
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool cFemonSymbolCache::Flush(void)
|
||||||
|
{
|
||||||
|
debug("%s()\n", __PRETTY_FUNCTION__);
|
||||||
|
for (int i = 0; i < cacheM.Size(); ++i) {
|
||||||
|
cBitmap *bmp = cacheM[i];
|
||||||
|
DELETENULL(bmp);
|
||||||
|
}
|
||||||
|
cacheM.Clear();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
cBitmap& cFemonSymbolCache::Get(eSymbols symbolP)
|
||||||
|
{
|
||||||
|
cBitmap *bitmapM = NULL;
|
||||||
|
|
||||||
|
if (symbolP < cacheM.Size())
|
||||||
|
bitmapM = cacheM[symbolP];
|
||||||
|
else
|
||||||
|
error("%s(): Invalid symbol %d\n", __PRETTY_FUNCTION__, symbolP);
|
||||||
|
|
||||||
|
return *bitmapM;
|
||||||
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
#ifndef __FEMONSYMBOL_H
|
#ifndef __FEMONSYMBOL_H
|
||||||
#define __FEMONSYMBOL_H
|
#define __FEMONSYMBOL_H
|
||||||
|
|
||||||
|
#include <vdr/tools.h>
|
||||||
#include <vdr/osd.h>
|
#include <vdr/osd.h>
|
||||||
|
|
||||||
enum eSymbols {
|
enum eSymbols {
|
||||||
@@ -49,6 +50,29 @@ enum eSymbols {
|
|||||||
SYMBOL_MAX_COUNT
|
SYMBOL_MAX_COUNT
|
||||||
};
|
};
|
||||||
|
|
||||||
extern cBitmap bmSymbol[SYMBOL_MAX_COUNT];
|
class cFemonSymbolCache {
|
||||||
|
private:
|
||||||
|
enum {
|
||||||
|
DEFAULT_SPACING = 5,
|
||||||
|
DEFAULT_ROUNDING = 10,
|
||||||
|
DEFAULT_HEIGHT = 576,
|
||||||
|
DEFAULT_WIDTH = 720
|
||||||
|
};
|
||||||
|
double xFactorM;
|
||||||
|
double yFactorM;
|
||||||
|
bool antiAliasM;
|
||||||
|
cVector<cBitmap*> cacheM;
|
||||||
|
bool Populate(void);
|
||||||
|
bool Flush(void);
|
||||||
|
public:
|
||||||
|
cFemonSymbolCache();
|
||||||
|
~cFemonSymbolCache();
|
||||||
|
void Refresh();
|
||||||
|
cBitmap& Get(eSymbols symbolP);
|
||||||
|
int GetSpacing() { return yFactorM * DEFAULT_SPACING; }
|
||||||
|
int GetRounding() { return yFactorM * DEFAULT_ROUNDING; }
|
||||||
|
};
|
||||||
|
|
||||||
|
extern cFemonSymbolCache femonSymbols;
|
||||||
|
|
||||||
#endif // __FEMONSYMBOL_H
|
#endif // __FEMONSYMBOL_H
|
||||||
|
|||||||
@@ -65,9 +65,9 @@ static cString getCA(int value)
|
|||||||
return cString::sprintf("%X", value);
|
return cString::sprintf("%X", value);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *getUserString(int Value, const tChannelParameterMap *Map)
|
static const char *getUserString(int Value, const tDvbParameterMap *Map)
|
||||||
{
|
{
|
||||||
const tChannelParameterMap *map = Map;
|
const tDvbParameterMap *map = Map;
|
||||||
while (map && map->userValue != -1) {
|
while (map && map->userValue != -1) {
|
||||||
if (map->driverValue == Value)
|
if (map->driverValue == Value)
|
||||||
return map->userString ? trVDR(map->userString) : "---";
|
return map->userString ? trVDR(map->userString) : "---";
|
||||||
@@ -294,6 +294,7 @@ cString getAudioCodec(int value)
|
|||||||
case AUDIO_CODEC_MPEG2_II: return cString::sprintf("%s", tr("MPEG-2 Layer II"));
|
case AUDIO_CODEC_MPEG2_II: return cString::sprintf("%s", tr("MPEG-2 Layer II"));
|
||||||
case AUDIO_CODEC_MPEG2_III: return cString::sprintf("%s", tr("MPEG-2 Layer III"));
|
case AUDIO_CODEC_MPEG2_III: return cString::sprintf("%s", tr("MPEG-2 Layer III"));
|
||||||
case AUDIO_CODEC_HEAAC: return cString::sprintf("%s", tr("HE-AAC"));
|
case AUDIO_CODEC_HEAAC: return cString::sprintf("%s", tr("HE-AAC"));
|
||||||
|
case AUDIO_CODEC_LATM: return cString::sprintf("%s", tr("LATM"));
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
return cString::sprintf("---");
|
return cString::sprintf("---");
|
||||||
|
|||||||
20
po/de_DE.po
20
po/de_DE.po
@@ -7,12 +7,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Christian Wieninger\n"
|
"Last-Translator: Christian Wieninger\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: German <vdr@linuxtv.org>\n"
|
||||||
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -89,6 +90,12 @@ msgstr "Position"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "Grenze Rot [%]"
|
msgstr "Grenze Rot [%]"
|
||||||
|
|
||||||
@@ -260,6 +267,9 @@ msgstr ""
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
20
po/es_ES.po
20
po/es_ES.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Luis Palacios\n"
|
"Last-Translator: Luis Palacios\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Spanish <vdr@linuxtv.org>\n"
|
||||||
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "Posici
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "L<>mite de rojo [%s]"
|
msgstr "L<>mite de rojo [%s]"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr ""
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
116
po/et_EE.po
116
po/et_EE.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Arthur Konovalov\n"
|
"Last-Translator: Arthur Konovalov\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Estonian <vdr@linuxtv.org>\n"
|
||||||
|
"Language: et\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-13\n"
|
"Content-Type: text/plain; charset=ISO-8859-13\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -22,7 +23,7 @@ msgid "Signal Information"
|
|||||||
msgstr "Signaaliinfo"
|
msgstr "Signaaliinfo"
|
||||||
|
|
||||||
msgid "Femon not available"
|
msgid "Femon not available"
|
||||||
msgstr ""
|
msgstr "Femon ei ole k<>ttesaadav"
|
||||||
|
|
||||||
msgid "basic"
|
msgid "basic"
|
||||||
msgstr "standard"
|
msgstr "standard"
|
||||||
@@ -37,7 +38,7 @@ msgid "AC-3"
|
|||||||
msgstr "AC-3"
|
msgstr "AC-3"
|
||||||
|
|
||||||
msgid "Classic"
|
msgid "Classic"
|
||||||
msgstr "Klassikaline"
|
msgstr "Classic"
|
||||||
|
|
||||||
msgid "Elchi"
|
msgid "Elchi"
|
||||||
msgstr "Elchi"
|
msgstr "Elchi"
|
||||||
@@ -64,79 +65,85 @@ msgid "SilverGreen"
|
|||||||
msgstr "SilverGreen"
|
msgstr "SilverGreen"
|
||||||
|
|
||||||
msgid "Hide main menu entry"
|
msgid "Hide main menu entry"
|
||||||
msgstr "Peida valik peamen<65><6E>s"
|
msgstr "Peita valik peamen<65><6E>s"
|
||||||
|
|
||||||
msgid "Define whether the main menu entry is hidden."
|
msgid "Define whether the main menu entry is hidden."
|
||||||
msgstr ""
|
msgstr "Valiku peamen<65><6E>s peitmise m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Default display mode"
|
msgid "Default display mode"
|
||||||
msgstr "Vaikimisi displei moodus"
|
msgstr "Vaikemoodus"
|
||||||
|
|
||||||
msgid "Define the default display mode at startup."
|
msgid "Define the default display mode at startup."
|
||||||
msgstr ""
|
msgstr "K<EFBFBD>ivitamisel vaikemooduse m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Define the used OSD skin."
|
msgid "Define the used OSD skin."
|
||||||
msgstr ""
|
msgstr "Kasutatava ekraanikesta m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Define the used OSD theme."
|
msgid "Define the used OSD theme."
|
||||||
msgstr ""
|
msgstr "Kasutatava teema m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Position"
|
msgid "Position"
|
||||||
msgstr "Positsioon"
|
msgstr "Positsioon"
|
||||||
|
|
||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr ""
|
msgstr "Ekraaniinfo positsiooni m<><6D>ritlemine."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr "Ekraanimen<65><6E> v<>hendamine [%]"
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr "Ekraanimen<65><6E> suuruse v<>hendamise m<><6D>ritlemine"
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "Punase limiit [%]"
|
msgstr "Punase limiit [%]"
|
||||||
|
|
||||||
msgid "Define a limit for red bar, which is used to indicate a bad signal."
|
msgid "Define a limit for red bar, which is used to indicate a bad signal."
|
||||||
msgstr ""
|
msgstr "Seaded punasele limiidile. Iseloomustab kehva signaali."
|
||||||
|
|
||||||
msgid "Green limit [%]"
|
msgid "Green limit [%]"
|
||||||
msgstr "Rohelise limiit [%]"
|
msgstr "Rohelise limiit [%]"
|
||||||
|
|
||||||
msgid "Define a limit for green bar, which is used to indicate a good signal."
|
msgid "Define a limit for green bar, which is used to indicate a good signal."
|
||||||
msgstr ""
|
msgstr "Seaded rohelisele limiidile. Iseloomustab head signaali."
|
||||||
|
|
||||||
msgid "OSD update interval [0.1s]"
|
msgid "OSD update interval [0.1s]"
|
||||||
msgstr "Uuendusintervall [0,1s]"
|
msgstr "Uuendusintervall [0,1s]"
|
||||||
|
|
||||||
msgid "Define an interval for OSD updates. The smaller interval generates higher CPU load."
|
msgid "Define an interval for OSD updates. The smaller interval generates higher CPU load."
|
||||||
msgstr ""
|
msgstr "Ekraaniinfo uuendamise intervalli m<><6D>ritlemine. V<>iksem intervall- suurem CPU koormus."
|
||||||
|
|
||||||
msgid "Analyze stream"
|
msgid "Analyze stream"
|
||||||
msgstr "Voo anal<61><6C>s"
|
msgstr "Voo anal<61><6C>s"
|
||||||
|
|
||||||
msgid "Define whether the DVB stream is analyzed and bitrates calculated."
|
msgid "Define whether the DVB stream is analyzed and bitrates calculated."
|
||||||
msgstr ""
|
msgstr "DVB voo bitikiiruse rehkendamise m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Calculation interval [0.1s]"
|
msgid "Calculation interval [0.1s]"
|
||||||
msgstr "Kalkulatsiooni intervall [0,1s]"
|
msgstr "Arvutamise intervall [0,1s]"
|
||||||
|
|
||||||
msgid "Define an interval for calculation. The bigger interval generates more stable values."
|
msgid "Define an interval for calculation. The bigger interval generates more stable values."
|
||||||
msgstr ""
|
msgstr "Arvutamise intervalli m<><6D>ritlemine. Suurem intervall annab stabiilsemaid tulemusi."
|
||||||
|
|
||||||
msgid "Use SVDRP service"
|
msgid "Use SVDRP service"
|
||||||
msgstr ""
|
msgstr "SVDRP teenus"
|
||||||
|
|
||||||
msgid "Define whether the SVDRP service is used in client/server setups."
|
msgid "Define whether the SVDRP service is used in client/server setups."
|
||||||
msgstr ""
|
msgstr "SVDRP teenuse klient/server seadete m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "SVDRP service port"
|
msgid "SVDRP service port"
|
||||||
msgstr ""
|
msgstr "SVDRP port"
|
||||||
|
|
||||||
msgid "Define the port number of SVDRP service."
|
msgid "Define the port number of SVDRP service."
|
||||||
msgstr ""
|
msgstr "SVDRP teenuse pordi m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "SVDRP service IP"
|
msgid "SVDRP service IP"
|
||||||
msgstr ""
|
msgstr "SVDRP IP"
|
||||||
|
|
||||||
msgid "Define the IP address of SVDRP service."
|
msgid "Define the IP address of SVDRP service."
|
||||||
msgstr ""
|
msgstr "SVDRP teenuse IP aadressi m<><6D>ritlemine."
|
||||||
|
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr "Abi"
|
||||||
|
|
||||||
msgid "Video"
|
msgid "Video"
|
||||||
msgstr "Video"
|
msgstr "Video"
|
||||||
@@ -169,13 +176,13 @@ msgid "Coderate"
|
|||||||
msgstr "Coderate"
|
msgstr "Coderate"
|
||||||
|
|
||||||
msgid "Stream Information"
|
msgid "Stream Information"
|
||||||
msgstr "Voo info"
|
msgstr "Vooinfo"
|
||||||
|
|
||||||
msgid "Video Stream"
|
msgid "Video Stream"
|
||||||
msgstr "Videovoog"
|
msgstr "Videovoog"
|
||||||
|
|
||||||
msgid "Codec"
|
msgid "Codec"
|
||||||
msgstr ""
|
msgstr "Koodek"
|
||||||
|
|
||||||
msgid "Bitrate"
|
msgid "Bitrate"
|
||||||
msgstr "Bitikiirus"
|
msgstr "Bitikiirus"
|
||||||
@@ -196,7 +203,7 @@ msgid "Audio Stream"
|
|||||||
msgstr "Audiovoog"
|
msgstr "Audiovoog"
|
||||||
|
|
||||||
msgid "Channel Mode"
|
msgid "Channel Mode"
|
||||||
msgstr ""
|
msgstr "Kanalimoodus"
|
||||||
|
|
||||||
msgid "Sampling Frequency"
|
msgid "Sampling Frequency"
|
||||||
msgstr "S<>mplimissagedus"
|
msgstr "S<>mplimissagedus"
|
||||||
@@ -229,64 +236,67 @@ msgid "Fixed"
|
|||||||
msgstr "Fikseeritud"
|
msgstr "Fikseeritud"
|
||||||
|
|
||||||
msgid "Analog"
|
msgid "Analog"
|
||||||
msgstr ""
|
msgstr "Analoog"
|
||||||
|
|
||||||
msgid "MPEG-2"
|
msgid "MPEG-2"
|
||||||
msgstr ""
|
msgstr "MPEG-2"
|
||||||
|
|
||||||
msgid "H.264"
|
msgid "H.264"
|
||||||
msgstr ""
|
msgstr "H.264"
|
||||||
|
|
||||||
msgid "MPEG-1 Layer I"
|
msgid "MPEG-1 Layer I"
|
||||||
msgstr ""
|
msgstr "MPEG-1 Layet I"
|
||||||
|
|
||||||
msgid "MPEG-1 Layer II"
|
msgid "MPEG-1 Layer II"
|
||||||
msgstr ""
|
msgstr "MPEG-1 Layer II"
|
||||||
|
|
||||||
msgid "MPEG-1 Layer III"
|
msgid "MPEG-1 Layer III"
|
||||||
msgstr ""
|
msgstr "MPEG-1 Layer III"
|
||||||
|
|
||||||
msgid "MPEG-2 Layer I"
|
msgid "MPEG-2 Layer I"
|
||||||
msgstr ""
|
msgstr "MPEG-2 Layer I"
|
||||||
|
|
||||||
msgid "MPEG-2 Layer II"
|
msgid "MPEG-2 Layer II"
|
||||||
msgstr ""
|
msgstr "MPEG-2 Layer II"
|
||||||
|
|
||||||
msgid "MPEG-2 Layer III"
|
msgid "MPEG-2 Layer III"
|
||||||
msgstr ""
|
msgstr "MPEG-2 Layer III"
|
||||||
|
|
||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr ""
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr ""
|
msgstr "stereo"
|
||||||
|
|
||||||
msgid "joint Stereo"
|
msgid "joint Stereo"
|
||||||
msgstr ""
|
msgstr "joint stereo"
|
||||||
|
|
||||||
msgid "dual"
|
msgid "dual"
|
||||||
msgstr ""
|
msgstr "duaalne"
|
||||||
|
|
||||||
msgid "mono"
|
msgid "mono"
|
||||||
msgstr ""
|
msgstr "mono"
|
||||||
|
|
||||||
msgid "interlaced"
|
msgid "interlaced"
|
||||||
msgstr ""
|
msgstr "<EFBFBD>lerealaotus"
|
||||||
|
|
||||||
msgid "progressive"
|
msgid "progressive"
|
||||||
msgstr ""
|
msgstr "progressiivne"
|
||||||
|
|
||||||
msgid "reserved"
|
msgid "reserved"
|
||||||
msgstr "reserveeritud"
|
msgstr "reserv."
|
||||||
|
|
||||||
msgid "extended"
|
msgid "extended"
|
||||||
msgstr ""
|
msgstr "laiendatud"
|
||||||
|
|
||||||
msgid "unknown"
|
msgid "unknown"
|
||||||
msgstr "tundmatu"
|
msgstr "tundmatu"
|
||||||
|
|
||||||
msgid "component"
|
msgid "component"
|
||||||
msgstr ""
|
msgstr "komponentne"
|
||||||
|
|
||||||
msgid "PAL"
|
msgid "PAL"
|
||||||
msgstr "PAL"
|
msgstr "PAL"
|
||||||
@@ -295,10 +305,10 @@ msgid "NTSC"
|
|||||||
msgstr "NTSC"
|
msgstr "NTSC"
|
||||||
|
|
||||||
msgid "SECAM"
|
msgid "SECAM"
|
||||||
msgstr ""
|
msgstr "SECAM"
|
||||||
|
|
||||||
msgid "MAC"
|
msgid "MAC"
|
||||||
msgstr ""
|
msgstr "MAC"
|
||||||
|
|
||||||
msgid "Hz"
|
msgid "Hz"
|
||||||
msgstr "Hz"
|
msgstr "Hz"
|
||||||
@@ -331,10 +341,10 @@ msgid "Karaoke"
|
|||||||
msgstr "Karaoke"
|
msgstr "Karaoke"
|
||||||
|
|
||||||
msgid "Ch1"
|
msgid "Ch1"
|
||||||
msgstr "Kan. 1"
|
msgstr "Kan.1"
|
||||||
|
|
||||||
msgid "Ch2"
|
msgid "Ch2"
|
||||||
msgstr "Kan. 2"
|
msgstr "Kan.2"
|
||||||
|
|
||||||
msgid "C"
|
msgid "C"
|
||||||
msgstr "C"
|
msgstr "C"
|
||||||
|
|||||||
20
po/fi_FI.po
20
po/fi_FI.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Rolf Ahrenberg\n"
|
"Last-Translator: Rolf Ahrenberg\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Finnish <vdr@linuxtv.org>\n"
|
||||||
|
"Language: fi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "Sijainti"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr "Määrittele näytön sijainti."
|
msgstr "Määrittele näytön sijainti."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr "Pienennä näytön kokoa [%]"
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr "Määrittele näytön pienennyssuhde."
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "Punaisen taso [%]"
|
msgstr "Punaisen taso [%]"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr "MPEG-2 kerros III"
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr "HE-AAC"
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr "stereo"
|
msgstr "stereo"
|
||||||
|
|
||||||
|
|||||||
20
po/fr_FR.po
20
po/fr_FR.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2008-01-26 09:59+0100\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: NIVAL Micha<68>l <mnival@club-internet.fr>\n"
|
"Last-Translator: NIVAL Micha<68>l <mnival@club-internet.fr>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: French <vdr@linuxtv.org>\n"
|
||||||
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "Position"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr "D<>finit la position de l'OSD."
|
msgstr "D<>finit la position de l'OSD."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "Limite du rouge (%)"
|
msgstr "Limite du rouge (%)"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr ""
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
45
po/it_IT.po
45
po/it_IT.po
@@ -6,15 +6,19 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2008-11-10 23:37+0100\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Italian <vdr@linuxtv.org>\n"
|
||||||
|
"Language: it\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-15\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Poedit-Language: Italian\n"
|
||||||
|
"X-Poedit-Country: ITALY\n"
|
||||||
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
|
|
||||||
msgid "DVB Signal Information Monitor (OSD)"
|
msgid "DVB Signal Information Monitor (OSD)"
|
||||||
msgstr "Mostra info segnale DVB (OSD)"
|
msgstr "Mostra info segnale DVB (OSD)"
|
||||||
@@ -68,13 +72,13 @@ msgid "Hide main menu entry"
|
|||||||
msgstr "Nascondi voce menu principale"
|
msgstr "Nascondi voce menu principale"
|
||||||
|
|
||||||
msgid "Define whether the main menu entry is hidden."
|
msgid "Define whether the main menu entry is hidden."
|
||||||
msgstr "Definisci se la voce del menu principale <EFBFBD> nascosta."
|
msgstr "Definisci se la voce del menu principale è nascosta."
|
||||||
|
|
||||||
msgid "Default display mode"
|
msgid "Default display mode"
|
||||||
msgstr "Modalit<EFBFBD> visualizz. predefinita"
|
msgstr "Modalità visualizz. predefinita"
|
||||||
|
|
||||||
msgid "Define the default display mode at startup."
|
msgid "Define the default display mode at startup."
|
||||||
msgstr "Definisci la modalit<EFBFBD> di visualizz. predefinita all'avvio."
|
msgstr "Definisci la modalità di visualizz. predefinita all'avvio."
|
||||||
|
|
||||||
msgid "Define the used OSD skin."
|
msgid "Define the used OSD skin."
|
||||||
msgstr "Definisci lo stile interfaccia OSD utilizzato."
|
msgstr "Definisci lo stile interfaccia OSD utilizzato."
|
||||||
@@ -88,6 +92,12 @@ msgstr "Posizione"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr "Definisci la posizione dell'OSD."
|
msgstr "Definisci la posizione dell'OSD."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr "Riduci dimensione OSD [%]"
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr "Definisci il rapporto di riduzione della dimensione OSD."
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "Limite rosso [%]"
|
msgstr "Limite rosso [%]"
|
||||||
|
|
||||||
@@ -104,19 +114,19 @@ msgid "OSD update interval [0.1s]"
|
|||||||
msgstr "Intervallo agg. OSD [0.1s]"
|
msgstr "Intervallo agg. OSD [0.1s]"
|
||||||
|
|
||||||
msgid "Define an interval for OSD updates. The smaller interval generates higher CPU load."
|
msgid "Define an interval for OSD updates. The smaller interval generates higher CPU load."
|
||||||
msgstr "Definisci un intervallo per gli agg. OSD. Pi<EFBFBD> piccolo <EFBFBD> l'intervallo maggiore sar<EFBFBD> l'uso di CPU."
|
msgstr "Definisci un intervallo per gli agg. OSD. Più piccolo è l'intervallo maggiore sarà l'uso di CPU."
|
||||||
|
|
||||||
msgid "Analyze stream"
|
msgid "Analyze stream"
|
||||||
msgstr "Analizza flusso"
|
msgstr "Analizza flusso"
|
||||||
|
|
||||||
msgid "Define whether the DVB stream is analyzed and bitrates calculated."
|
msgid "Define whether the DVB stream is analyzed and bitrates calculated."
|
||||||
msgstr "Definisci se il flusso DVB <EFBFBD> analizzato e i bitrate calcolati."
|
msgstr "Definisci se il flusso DVB è analizzato e i bitrate calcolati."
|
||||||
|
|
||||||
msgid "Calculation interval [0.1s]"
|
msgid "Calculation interval [0.1s]"
|
||||||
msgstr "Intervallo di calcolo [0.1s]"
|
msgstr "Intervallo di calcolo [0.1s]"
|
||||||
|
|
||||||
msgid "Define an interval for calculation. The bigger interval generates more stable values."
|
msgid "Define an interval for calculation. The bigger interval generates more stable values."
|
||||||
msgstr "Definisci un intervallo di calcolo. L'intervallo pi<EFBFBD> grande genera valori pi<EFBFBD> stabili."
|
msgstr "Definisci un intervallo di calcolo. L'intervallo più grande genera valori più stabili."
|
||||||
|
|
||||||
msgid "Use SVDRP service"
|
msgid "Use SVDRP service"
|
||||||
msgstr "Utilizza servizio SVDRP"
|
msgstr "Utilizza servizio SVDRP"
|
||||||
@@ -197,7 +207,7 @@ msgid "Audio Stream"
|
|||||||
msgstr "Flusso audio"
|
msgstr "Flusso audio"
|
||||||
|
|
||||||
msgid "Channel Mode"
|
msgid "Channel Mode"
|
||||||
msgstr "Modalit<EFBFBD> canale"
|
msgstr "Modalità canale"
|
||||||
|
|
||||||
msgid "Sampling Frequency"
|
msgid "Sampling Frequency"
|
||||||
msgstr "Frequenza campionamento"
|
msgstr "Frequenza campionamento"
|
||||||
@@ -206,10 +216,10 @@ msgid "AC-3 Stream"
|
|||||||
msgstr "Flusso AC-3"
|
msgstr "Flusso AC-3"
|
||||||
|
|
||||||
msgid "Bit Stream Mode"
|
msgid "Bit Stream Mode"
|
||||||
msgstr "Modalit<EFBFBD> bitstream"
|
msgstr "Modalità bitstream"
|
||||||
|
|
||||||
msgid "Audio Coding Mode"
|
msgid "Audio Coding Mode"
|
||||||
msgstr "Modalit<EFBFBD> codifica audio"
|
msgstr "Modalità codifica audio"
|
||||||
|
|
||||||
msgid "Center Mix Level"
|
msgid "Center Mix Level"
|
||||||
msgstr "Livello sonoro centrale"
|
msgstr "Livello sonoro centrale"
|
||||||
@@ -218,7 +228,7 @@ msgid "Surround Mix Level"
|
|||||||
msgstr "Livello sonoro surround"
|
msgstr "Livello sonoro surround"
|
||||||
|
|
||||||
msgid "Dolby Surround Mode"
|
msgid "Dolby Surround Mode"
|
||||||
msgstr "Modalit<EFBFBD> Dolby Surround"
|
msgstr "Modalità Dolby Surround"
|
||||||
|
|
||||||
msgid "Low Frequency Effects"
|
msgid "Low Frequency Effects"
|
||||||
msgstr "Effetti bassa frequenza"
|
msgstr "Effetti bassa frequenza"
|
||||||
@@ -259,6 +269,9 @@ msgstr "MPEG-2 Layer III"
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr "HE-AAC"
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr "stereo"
|
msgstr "stereo"
|
||||||
|
|
||||||
|
|||||||
383
po/lt_LT.po
Normal file
383
po/lt_LT.po
Normal file
@@ -0,0 +1,383 @@
|
|||||||
|
# VDR plugin language source file.
|
||||||
|
# Copyright (C) 2007 Rolf Ahrenberg
|
||||||
|
# This file is distributed under the same license as the femon package.
|
||||||
|
# Valdemaras Pipiras
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
|
"Last-Translator: Valdemaras Pipiras <varas@ambernet.lt>\n"
|
||||||
|
"Language-Team: Lithuanian <vdr@linuxtv.org>\n"
|
||||||
|
"Language: lt\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
msgid "DVB Signal Information Monitor (OSD)"
|
||||||
|
msgstr "DVB signalo informacijos stebėjimas (OSD)"
|
||||||
|
|
||||||
|
msgid "Signal Information"
|
||||||
|
msgstr "Signalo informacija"
|
||||||
|
|
||||||
|
msgid "Femon not available"
|
||||||
|
msgstr "Femon įskiepas nepasiekiamas"
|
||||||
|
|
||||||
|
msgid "basic"
|
||||||
|
msgstr "Standartinis"
|
||||||
|
|
||||||
|
msgid "transponder"
|
||||||
|
msgstr "Siųstuvas"
|
||||||
|
|
||||||
|
msgid "stream"
|
||||||
|
msgstr "Srautas"
|
||||||
|
|
||||||
|
msgid "AC-3"
|
||||||
|
msgstr "AC-3"
|
||||||
|
|
||||||
|
msgid "Classic"
|
||||||
|
msgstr "Klasikinis"
|
||||||
|
|
||||||
|
msgid "Elchi"
|
||||||
|
msgstr "Elchi"
|
||||||
|
|
||||||
|
msgid "ST:TNG"
|
||||||
|
msgstr "ST:TNG"
|
||||||
|
|
||||||
|
msgid "DeepBlue"
|
||||||
|
msgstr "DeepBlue"
|
||||||
|
|
||||||
|
msgid "Moronimo"
|
||||||
|
msgstr "Moronimo"
|
||||||
|
|
||||||
|
msgid "Enigma"
|
||||||
|
msgstr "Enigma"
|
||||||
|
|
||||||
|
msgid "EgalsTry"
|
||||||
|
msgstr "EgalsTry"
|
||||||
|
|
||||||
|
msgid "Duotone"
|
||||||
|
msgstr "Duotone"
|
||||||
|
|
||||||
|
msgid "SilverGreen"
|
||||||
|
msgstr "SilverGreen"
|
||||||
|
|
||||||
|
msgid "Hide main menu entry"
|
||||||
|
msgstr "Paslėpti pagrindinio meniu įrašus"
|
||||||
|
|
||||||
|
msgid "Define whether the main menu entry is hidden."
|
||||||
|
msgstr "Nustatyti pagrindinio meniu įrašų paslėpimą."
|
||||||
|
|
||||||
|
msgid "Default display mode"
|
||||||
|
msgstr "Numatytasis rodymo būdas"
|
||||||
|
|
||||||
|
msgid "Define the default display mode at startup."
|
||||||
|
msgstr "Nustatyti numatytąjį rodymo būdą paleidžiant."
|
||||||
|
|
||||||
|
msgid "Define the used OSD skin."
|
||||||
|
msgstr "Nustatyti naudojamą ekrano apvalkalą."
|
||||||
|
|
||||||
|
msgid "Define the used OSD theme."
|
||||||
|
msgstr "Nustatyti naudojamą ekrano temą."
|
||||||
|
|
||||||
|
msgid "Position"
|
||||||
|
msgstr "Pozicija"
|
||||||
|
|
||||||
|
msgid "Define the position of OSD."
|
||||||
|
msgstr "Nustatyti ekrano užsklandos poziciją."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Red limit [%]"
|
||||||
|
msgstr "Raudonoji ribą [%]"
|
||||||
|
|
||||||
|
msgid "Define a limit for red bar, which is used to indicate a bad signal."
|
||||||
|
msgstr "Nustatyti raudonos juostos ribą, kuri naudojama blogo signalo indikacijai."
|
||||||
|
|
||||||
|
msgid "Green limit [%]"
|
||||||
|
msgstr "Žalioji riba [%]"
|
||||||
|
|
||||||
|
msgid "Define a limit for green bar, which is used to indicate a good signal."
|
||||||
|
msgstr "Nustatyti žalios juostos ribą, kuri naudojama gero signalo indikacijai."
|
||||||
|
|
||||||
|
msgid "OSD update interval [0.1s]"
|
||||||
|
msgstr "Ekrano užsklandos atnaujinimo intervalas [0.1s]"
|
||||||
|
|
||||||
|
msgid "Define an interval for OSD updates. The smaller interval generates higher CPU load."
|
||||||
|
msgstr "Nustatyti ekrano užsklandos atnaujinimo intervalą. Mažesnis intervalas labiau apkrauna centrinį procesorių (CPU)."
|
||||||
|
|
||||||
|
msgid "Analyze stream"
|
||||||
|
msgstr "Analizuoti srautą"
|
||||||
|
|
||||||
|
msgid "Define whether the DVB stream is analyzed and bitrates calculated."
|
||||||
|
msgstr "Nurodyti ar DVB srautas turi būti analizuojamas bei jo kokybė išskaičiuojama."
|
||||||
|
|
||||||
|
msgid "Calculation interval [0.1s]"
|
||||||
|
msgstr "Apskaitos intervalos [0.1s]"
|
||||||
|
|
||||||
|
msgid "Define an interval for calculation. The bigger interval generates more stable values."
|
||||||
|
msgstr "Nustatyti apskaitos intervalą. Kuo didesnis intervalas, tuo tikslesni duomenys."
|
||||||
|
|
||||||
|
msgid "Use SVDRP service"
|
||||||
|
msgstr "Naudoti SVDRP paslaugą"
|
||||||
|
|
||||||
|
msgid "Define whether the SVDRP service is used in client/server setups."
|
||||||
|
msgstr "Nurodyti ar SVDRP paslauga naudojama kliento/serverio nustatymuose."
|
||||||
|
|
||||||
|
msgid "SVDRP service port"
|
||||||
|
msgstr "SVDRP įrenginio portas"
|
||||||
|
|
||||||
|
msgid "Define the port number of SVDRP service."
|
||||||
|
msgstr "Nustatyti SVDRP įrenginio prievadą."
|
||||||
|
|
||||||
|
msgid "SVDRP service IP"
|
||||||
|
msgstr "SVDRP įrenginio IP"
|
||||||
|
|
||||||
|
msgid "Define the IP address of SVDRP service."
|
||||||
|
msgstr "Nustatyti SVDRP įrenginio IP adresą."
|
||||||
|
|
||||||
|
msgid "Help"
|
||||||
|
msgstr "Pagalba"
|
||||||
|
|
||||||
|
msgid "Video"
|
||||||
|
msgstr "Video"
|
||||||
|
|
||||||
|
msgid "Audio"
|
||||||
|
msgstr "Audio"
|
||||||
|
|
||||||
|
msgid "Transponder Information"
|
||||||
|
msgstr "Siųstuvo informacija"
|
||||||
|
|
||||||
|
msgid "Apid"
|
||||||
|
msgstr "Apid"
|
||||||
|
|
||||||
|
msgid "Dpid"
|
||||||
|
msgstr "Dpid"
|
||||||
|
|
||||||
|
msgid "Spid"
|
||||||
|
msgstr "Spid"
|
||||||
|
|
||||||
|
msgid "Nid"
|
||||||
|
msgstr "Nid"
|
||||||
|
|
||||||
|
msgid "Tid"
|
||||||
|
msgstr "Tid"
|
||||||
|
|
||||||
|
msgid "Rid"
|
||||||
|
msgstr "Rid"
|
||||||
|
|
||||||
|
msgid "Coderate"
|
||||||
|
msgstr "Kodavimo dažnis"
|
||||||
|
|
||||||
|
msgid "Stream Information"
|
||||||
|
msgstr "Srauto informacija"
|
||||||
|
|
||||||
|
msgid "Video Stream"
|
||||||
|
msgstr "Video srautas"
|
||||||
|
|
||||||
|
msgid "Codec"
|
||||||
|
msgstr "Kodekas"
|
||||||
|
|
||||||
|
msgid "Bitrate"
|
||||||
|
msgstr "Kokybė"
|
||||||
|
|
||||||
|
msgid "Aspect Ratio"
|
||||||
|
msgstr "Proporcijos"
|
||||||
|
|
||||||
|
msgid "Frame Rate"
|
||||||
|
msgstr "Kadrų dažnis"
|
||||||
|
|
||||||
|
msgid "Video Format"
|
||||||
|
msgstr "Video formatas"
|
||||||
|
|
||||||
|
msgid "Resolution"
|
||||||
|
msgstr "Rezoliucija"
|
||||||
|
|
||||||
|
msgid "Audio Stream"
|
||||||
|
msgstr "Audio srautas"
|
||||||
|
|
||||||
|
msgid "Channel Mode"
|
||||||
|
msgstr "kanalo būsena"
|
||||||
|
|
||||||
|
msgid "Sampling Frequency"
|
||||||
|
msgstr "Parodomasis dažnis"
|
||||||
|
|
||||||
|
msgid "AC-3 Stream"
|
||||||
|
msgstr "AC-3 srautas"
|
||||||
|
|
||||||
|
msgid "Bit Stream Mode"
|
||||||
|
msgstr "Bitstream būsena"
|
||||||
|
|
||||||
|
msgid "Audio Coding Mode"
|
||||||
|
msgstr "Audio kodavimas"
|
||||||
|
|
||||||
|
msgid "Center Mix Level"
|
||||||
|
msgstr "Centerinis Mix lygis"
|
||||||
|
|
||||||
|
msgid "Surround Mix Level"
|
||||||
|
msgstr "Surround Mix lygis"
|
||||||
|
|
||||||
|
msgid "Dolby Surround Mode"
|
||||||
|
msgstr "Dolby Surround būklė"
|
||||||
|
|
||||||
|
msgid "Low Frequency Effects"
|
||||||
|
msgstr "Žemo dažnio efektai"
|
||||||
|
|
||||||
|
msgid "Dialogue Normalization"
|
||||||
|
msgstr "Dialogo normalizacija"
|
||||||
|
|
||||||
|
msgid "Fixed"
|
||||||
|
msgstr "Fest"
|
||||||
|
|
||||||
|
msgid "Analog"
|
||||||
|
msgstr "Analog"
|
||||||
|
|
||||||
|
msgid "MPEG-2"
|
||||||
|
msgstr "MPEG-2"
|
||||||
|
|
||||||
|
msgid "H.264"
|
||||||
|
msgstr "H.264"
|
||||||
|
|
||||||
|
msgid "MPEG-1 Layer I"
|
||||||
|
msgstr "MPEG-1 Layer I"
|
||||||
|
|
||||||
|
msgid "MPEG-1 Layer II"
|
||||||
|
msgstr "MPEG-1 Layer II"
|
||||||
|
|
||||||
|
msgid "MPEG-1 Layer III"
|
||||||
|
msgstr "MPEG-1 Layer III"
|
||||||
|
|
||||||
|
msgid "MPEG-2 Layer I"
|
||||||
|
msgstr "MPEG-2 Layer I"
|
||||||
|
|
||||||
|
msgid "MPEG-2 Layer II"
|
||||||
|
msgstr "MPEG-2 Layer II"
|
||||||
|
|
||||||
|
msgid "MPEG-2 Layer III"
|
||||||
|
msgstr "MPEG-2 Layer III"
|
||||||
|
|
||||||
|
msgid "HE-AAC"
|
||||||
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
|
msgid "stereo"
|
||||||
|
msgstr "stereo"
|
||||||
|
|
||||||
|
msgid "joint Stereo"
|
||||||
|
msgstr "jungtinis stereo"
|
||||||
|
|
||||||
|
msgid "dual"
|
||||||
|
msgstr "dvigubas"
|
||||||
|
|
||||||
|
msgid "mono"
|
||||||
|
msgstr "mono"
|
||||||
|
|
||||||
|
msgid "interlaced"
|
||||||
|
msgstr "persipynęs (interlaced)"
|
||||||
|
|
||||||
|
msgid "progressive"
|
||||||
|
msgstr "progresyvinis"
|
||||||
|
|
||||||
|
msgid "reserved"
|
||||||
|
msgstr "belegt"
|
||||||
|
|
||||||
|
msgid "extended"
|
||||||
|
msgstr "išplėstas"
|
||||||
|
|
||||||
|
msgid "unknown"
|
||||||
|
msgstr "nežinomas"
|
||||||
|
|
||||||
|
msgid "component"
|
||||||
|
msgstr "komponentas"
|
||||||
|
|
||||||
|
msgid "PAL"
|
||||||
|
msgstr "PAL"
|
||||||
|
|
||||||
|
msgid "NTSC"
|
||||||
|
msgstr "NTSC"
|
||||||
|
|
||||||
|
msgid "SECAM"
|
||||||
|
msgstr "SECAM"
|
||||||
|
|
||||||
|
msgid "MAC"
|
||||||
|
msgstr "MAC"
|
||||||
|
|
||||||
|
msgid "Hz"
|
||||||
|
msgstr "Hz"
|
||||||
|
|
||||||
|
msgid "Complete Main (CM)"
|
||||||
|
msgstr "Pilnai pagrindinis (CM)"
|
||||||
|
|
||||||
|
msgid "Music and Effects (ME)"
|
||||||
|
msgstr "Muzika ir efektai (ME)"
|
||||||
|
|
||||||
|
msgid "Visually Impaired (VI)"
|
||||||
|
msgstr " (VI)"
|
||||||
|
|
||||||
|
msgid "Hearing Impaired (HI)"
|
||||||
|
msgstr " (HI)"
|
||||||
|
|
||||||
|
msgid "Dialogue (D)"
|
||||||
|
msgstr "Dialogas (D)"
|
||||||
|
|
||||||
|
msgid "Commentary (C)"
|
||||||
|
msgstr "Komentavimas (C)"
|
||||||
|
|
||||||
|
msgid "Emergency (E)"
|
||||||
|
msgstr "Avarinis (E)"
|
||||||
|
|
||||||
|
msgid "Voice Over (VO)"
|
||||||
|
msgstr "Voice over (VO)"
|
||||||
|
|
||||||
|
msgid "Karaoke"
|
||||||
|
msgstr "Karaoke"
|
||||||
|
|
||||||
|
msgid "Ch1"
|
||||||
|
msgstr "Kan1"
|
||||||
|
|
||||||
|
msgid "Ch2"
|
||||||
|
msgstr "Kan2"
|
||||||
|
|
||||||
|
msgid "C"
|
||||||
|
msgstr "C"
|
||||||
|
|
||||||
|
msgid "L"
|
||||||
|
msgstr "L"
|
||||||
|
|
||||||
|
msgid "R"
|
||||||
|
msgstr "R"
|
||||||
|
|
||||||
|
msgid "S"
|
||||||
|
msgstr "S"
|
||||||
|
|
||||||
|
msgid "SL"
|
||||||
|
msgstr "SL"
|
||||||
|
|
||||||
|
msgid "SR"
|
||||||
|
msgstr "SR"
|
||||||
|
|
||||||
|
msgid "dB"
|
||||||
|
msgstr "dB"
|
||||||
|
|
||||||
|
msgid "not indicated"
|
||||||
|
msgstr "nerasta"
|
||||||
|
|
||||||
|
msgid "MHz"
|
||||||
|
msgstr "MHz"
|
||||||
|
|
||||||
|
msgid "free"
|
||||||
|
msgstr "frei"
|
||||||
|
|
||||||
|
msgid "Mbit/s"
|
||||||
|
msgstr "Mbit/s"
|
||||||
|
|
||||||
|
msgid "kbit/s"
|
||||||
|
msgstr "kbit/s"
|
||||||
20
po/ru_RU.po
20
po/ru_RU.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2007-08-12 23:22+0300\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: Vyacheslav Dikonov\n"
|
"Last-Translator: Vyacheslav Dikonov\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Russian <vdr@linuxtv.org>\n"
|
||||||
|
"Language: ru\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=ISO-8859-5\n"
|
"Content-Type: text/plain; charset=ISO-8859-5\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> (%)"
|
msgstr "<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> (%)"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr ""
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
20
po/zh_CN.po
20
po/zh_CN.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2009-09-21 21:36+0800\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: NanFeng <nfgx@21cn.com>\n"
|
"Last-Translator: NanFeng <nfgx@21cn.com>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Chinese (simplified) <vdr@linuxtv.org>\n"
|
||||||
|
"Language: zh_CN\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "位置"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr "确定菜单的位置."
|
msgstr "确定菜单的位置."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "红限制[ % ]"
|
msgstr "红限制[ % ]"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr "MPEG-2 Layer III"
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr "HE-AAC"
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr "立体声"
|
msgstr "立体声"
|
||||||
|
|
||||||
|
|||||||
20
po/zh_TW.po
20
po/zh_TW.po
@@ -5,12 +5,13 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: femon 1.7.3\n"
|
"Project-Id-Version: vdr-femon 1.7.10\n"
|
||||||
"Report-Msgid-Bugs-To: Rolf Ahrenberg\n"
|
"Report-Msgid-Bugs-To: <see README>\n"
|
||||||
"POT-Creation-Date: 2009-08-29 20:57+0300\n"
|
"POT-Creation-Date: 2010-10-10 10:10+0300\n"
|
||||||
"PO-Revision-Date: 2009-09-21 21:36+0800\n"
|
"PO-Revision-Date: 2010-10-10 10:10+0300\n"
|
||||||
"Last-Translator: NanFeng <nfgx@21cn.com>\n"
|
"Last-Translator: NanFeng <nfgx@21cn.com>\n"
|
||||||
"Language-Team: <vdr@linuxtv.org>\n"
|
"Language-Team: Chinese (traditional) <vdr@linuxtv.org>\n"
|
||||||
|
"Language: zh_TW\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
@@ -87,6 +88,12 @@ msgstr "位置"
|
|||||||
msgid "Define the position of OSD."
|
msgid "Define the position of OSD."
|
||||||
msgstr "確定菜單的位置."
|
msgstr "確定菜單的位置."
|
||||||
|
|
||||||
|
msgid "Downscale OSD size [%]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Define the downscale ratio for OSD size."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Red limit [%]"
|
msgid "Red limit [%]"
|
||||||
msgstr "紅限制[ % ]"
|
msgstr "紅限制[ % ]"
|
||||||
|
|
||||||
@@ -258,6 +265,9 @@ msgstr "MPEG-2 Layer III"
|
|||||||
msgid "HE-AAC"
|
msgid "HE-AAC"
|
||||||
msgstr "HE-AAC"
|
msgstr "HE-AAC"
|
||||||
|
|
||||||
|
msgid "LATM"
|
||||||
|
msgstr "LATM"
|
||||||
|
|
||||||
msgid "stereo"
|
msgid "stereo"
|
||||||
msgstr "立體聲"
|
msgstr "立體聲"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user