summaryrefslogtreecommitdiff
path: root/remux.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-08-26 13:37:42 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-08-26 13:37:42 +0200
commit0201f7cbf8f072add2b77af2f97e2c38b12b8eed (patch)
treea236a6cc5b4d99032abc9a3b2c2cabdd2d4bb342 /remux.c
parent449ffebcac1e857b4c11f60b3c310ac337a4abc8 (diff)
downloadvdr-0201f7cbf8f072add2b77af2f97e2c38b12b8eed.tar.gz
vdr-0201f7cbf8f072add2b77af2f97e2c38b12b8eed.tar.bz2
Modified handling of audio packets for radio channels in remux.c
Diffstat (limited to 'remux.c')
-rw-r--r--remux.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/remux.c b/remux.c
index 66477f12..4ecb5b83 100644
--- a/remux.c
+++ b/remux.c
@@ -11,7 +11,7 @@
* The cDolbyRepacker code was originally written by Reinhard Nissl <rnissl@gmx.de>,
* and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.de.
*
- * $Id: remux.c 1.38 2005/08/26 13:34:07 kls Exp $
+ * $Id: remux.c 1.39 2005/08/26 13:35:53 kls Exp $
*/
#include "remux.h"
@@ -1817,19 +1817,6 @@ uchar *cRemux::Get(int &Count, uchar *PictureType)
return resultBuffer->Get(Count);
#endif
- // Special VPID case to enable recording radio channels:
-
- if (isRadio) {
- // XXX actually '0' should be enough, but '1' must be used with encrypted channels (driver bug?)
- // XXX also allowing 0x1FFF to not break Michael Paar's original patch,
- // XXX but it would probably be best to only use '0'
- // Force syncing of radio channels to avoid "no useful data" error
- synced = true;
- if (PictureType)
- *PictureType = I_FRAME;
- return resultBuffer->Get(Count);
- }
-
// Check for frame borders:
if (PictureType)
@@ -1874,6 +1861,18 @@ uchar *cRemux::Get(int &Count, uchar *PictureType)
l = GetPacketLength(data, resultCount, i);
if (l < 0)
return resultData;
+ if (isRadio) {
+ if (!synced) {
+ if (PictureType)
+ *PictureType = I_FRAME;
+ resultSkipped = i; // will drop everything before this position
+ synced = true;
+ }
+ else if (Count)
+ return resultData;
+ else if (PictureType)
+ *PictureType = I_FRAME;
+ }
}
if (synced) {
if (!Count)