Browse Source

[media] ngene: Fixes for TS input over I2S

Fix TS input over I2S.

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Oliver Endriss 14 years ago
parent
commit
ac9725d224
2 changed files with 6 additions and 3 deletions
  1. 2 2
      drivers/media/dvb/ngene/ngene-core.c
  2. 4 1
      drivers/media/dvb/ngene/ngene-dvb.c

+ 2 - 2
drivers/media/dvb/ngene/ngene-core.c

@@ -143,7 +143,7 @@ static void demux_tasklet(unsigned long data)
 			}
 		} else {
 			if (chan->HWState == HWSTATE_RUN) {
-				u32 Flags = 0;
+				u32 Flags = chan->DataFormatFlags;
 				IBufferExchange *exch1 = chan->pBufferExchange;
 				IBufferExchange *exch2 = chan->pBufferExchange2;
 				if (Cur->ngeneBuffer.SR.Flags & 0x01)
@@ -474,7 +474,7 @@ static u8 SPDIFConfiguration[10] = {
 
 /* Set NGENE I2S Config to transport stream compatible mode */
 
-static u8 TS_I2SConfiguration[4] = { 0x3E, 0x1A, 0x00, 0x00 }; /*3e 18 00 00 ?*/
+static u8 TS_I2SConfiguration[4] = { 0x3E, 0x18, 0x00, 0x00 };
 
 static u8 TS_I2SOutConfiguration[4] = { 0x80, 0x20, 0x00, 0x00 };
 

+ 4 - 1
drivers/media/dvb/ngene/ngene-dvb.c

@@ -65,8 +65,11 @@ void *tsin_exchange(void *priv, void *buf, u32 len, u32 clock, u32 flags)
 	struct ngene_channel *chan = priv;
 
 
-	if (chan->users > 0)
+	if (chan->users > 0) {
+		if (flags & DF_SWAP32)
+			swap_buffer(buf, len);
 		dvb_dmx_swfilter(&chan->demux, buf, len);
+	}
 	return NULL;
 }