Skip to content

Commit

Permalink
V4L/DVB (5776): Hardware MPEG audio fix for SAA7134 based "KNC One TV…
Browse files Browse the repository at this point in the history
…-Station DVR" card

With previous patch card is generating MPEG audio stream too.
Unfortunatly I2S audio output is muted. Unmute it.

Signed-off-by: Rafal Bilski <rafalbilski@interia.pl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Rafael Bilski authored and Mauro Carvalho Chehab committed Jul 18, 2007
1 parent aac0ca6 commit b784e52
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/media/video/saa7134/saa7134-empress.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ static int ts_open(struct inode *inode, struct file *file)
if (dev->empress_users)
goto done_up;

/* Unmute audio */
saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
saa_readb(SAA7134_AUDIO_MUTE_CTRL) & ~(1 << 6));

dev->empress_users++;
file->private_data = dev;
err = 0;
Expand All @@ -121,6 +125,10 @@ static int ts_release(struct inode *inode, struct file *file)
/* stop the encoder */
ts_reset_encoder(dev);

/* Mute audio */
saa_writeb(SAA7134_AUDIO_MUTE_CTRL,
saa_readb(SAA7134_AUDIO_MUTE_CTRL) | (1 << 6));

mutex_unlock(&dev->empress_tsq.lock);
return 0;
}
Expand Down

0 comments on commit b784e52

Please sign in to comment.