Skip to content

Commit

Permalink
V4L/DVB (13630): Print bitrate measured by stv0900 demod in stv0900_r…
Browse files Browse the repository at this point in the history
…ead_status

Signed-off-by: Abylay Ospan <aospan@netup.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Abylay Ospan authored and Mauro Carvalho Chehab committed Dec 16, 2009
1 parent 174c44e commit 247cb14
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drivers/media/dvb/frontends/stv0900_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1451,6 +1451,8 @@ static int stv0900_status(struct stv0900_internal *intp,
{
enum fe_stv0900_search_state demod_state;
int locked = FALSE;
u8 tsbitrate0_val, tsbitrate1_val;
s32 bitrate;

demod_state = stv0900_get_bits(intp, HEADER_MODE);
switch (demod_state) {
Expand All @@ -1473,6 +1475,17 @@ static int stv0900_status(struct stv0900_internal *intp,

dprintk("%s: locked = %d\n", __func__, locked);

if (stvdebug) {
/* Print TS bitrate */
tsbitrate0_val = stv0900_read_reg(intp, TSBITRATE0);
tsbitrate1_val = stv0900_read_reg(intp, TSBITRATE1);
/* Formula Bit rate = Mclk * px_tsfifo_bitrate / 16384 */
bitrate = (stv0900_get_mclk_freq(intp, intp->quartz)/1000000)
* (tsbitrate1_val << 8 | tsbitrate0_val);
bitrate /= 16384;
dprintk("TS bitrate = %d Mbit/sec \n", bitrate);
};

return locked;
}

Expand Down

0 comments on commit 247cb14

Please sign in to comment.