Re: [vdr] vdr-1.7.19 recording issue

2011-08-17 Thread Arthur Konovalov

7.08.2011 12:51, Klaus Schmidinger kirjutas:

On 06.07.2011 16:40, Arthur Konovalov wrote:

On 6.07.2011 10:40, mike_booth76 wrote:


Have you found a fix for this yet Arthur. I have the same problem but
we seem to
be the only two...Mike



Hi!

Actually I awaiting some actions or response from Klaus, because my
C++ programming knowledge is very limited.


The only real problem I see at the moment is the one
causing distortions when switching from one file
to the next during replay. This is apparently caused
by a wrong index entry being generated at that point.
I'm currently working on fixing that...

Klaus


It seems that with 1.7.20 my reported problem is gone.
Thanks!

br,
AK

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] AAC LATM audio issue on dvb-t israeli service

2011-08-17 Thread Barak Nahari
This issue have been fixed.
Vnsi server developer Pipelka add a fix to the vnsi server plugin.
Anyone who experience issue with aac latm should compile an updated version
from the git.
Thanks for all the help I've received from Klaus, Pipelka and the kind
people here.

Regards,

Barak.
___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr


Re: [vdr] AAC LATM audio issue on dvb-t israeli service

2011-08-17 Thread Rolf Ahrenberg

On Wed, 17 Aug 2011, Barak Nahari wrote:


It can be on the vnsi server plugin as it may can't recognize the aac-latm 
within the stream.


Currently, both AAC LATM and ADTS are unsupported by vnsiserver plugin. 
You can try enabling the support, but I guess the AAC demuxer is written 
for ADTS only...


diff --git a/receiver.c b/receiver.c
index 305af00..836c240 100644
--- a/receiver.c
+++ b/receiver.c
@@ -195,11 +195,15 @@ int cLivePatFilter::GetPid(SI::PMT::Stream& stream, 
eStreamType *type, char *lan
 case 0x0d: // ISO/IEC 13818-6 Sections (any type, including private data)
 case 0x0e: // ISO/IEC 13818-1 auxiliary
 #endif
-case 0x0f: // ISO/IEC 13818-7 Audio with ADTS transport syntax
 case 0x10: // ISO/IEC 14496-2 Visual (MPEG-4)
-case 0x11: // ISO/IEC 14496-3 Audio with LATM transport syntax
   DEBUGLOG("cStreamdevPatFilter PMT scanner: Not adding PID %d (%s) 
(skipped)\n", stream.getPid(), psStreamTypes[stream.getStreamType()]);
   break;
+case 0x0f: // ISO/IEC 13818-7 Audio with ADTS transport syntax
+case 0x11: // ISO/IEC 14496-3 Audio with LATM transport syntax
+  *type   = stAAC;
+  GetLanguage(stream, langs);
+  DEBUGLOG("cStreamdevPatFilter PMT scanner adding PID %d (%s) (%s)\n", 
stream.getPid(), psStreamTypes[stream.getStreamType()], langs);
+  return stream.getPid();
 case 0x1b: // ISO/IEC 14496-10 Video (MPEG-4 part 10/AVC, aka H.264)
   DEBUGLOG("cStreamdevPatFilter PMT scanner adding PID %d (%s)\n", 
stream.getPid(), psStreamTypes[stream.getStreamType()]);
   *type = stH264;

BR,
--
rofa

___
vdr mailing list
vdr@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/vdr