Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 241799
b: refs/heads/master
c: ac9725d
h: refs/heads/master
i:
  241797: 78b6ce2
  241795: ad28b29
  241791: 65a31bf
v: v3
  • Loading branch information
Oliver Endriss authored and Mauro Carvalho Chehab committed Mar 21, 2011
1 parent d4acbfe commit bdd0e6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 09961aae7b3ea8640051e464b346ed3984521de8
refs/heads/master: ac9725d224544954a8d3413a2a66bdf49f735d8b
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/ngene/ngene-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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 };

Expand Down
5 changes: 4 additions & 1 deletion trunk/drivers/media/dvb/ngene/ngene-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit bdd0e6c

Please sign in to comment.