-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdp_util.h
44 lines (33 loc) · 1.42 KB
/
sdp_util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Copyright (C) 2013 Samsung Electronics Co.Ltd
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*
* bugficks@samygo
* Copied and modified required stuff from sdp_tsd sources
*
*/
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef __SDP_UTIL_H__
#define __SDP_UTIL_H__
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <sdp_tsd/sdp_tsd_common.h>
#include <sdp_tsd/sdp_tsd_dvb.h>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void print_filter_debug_info(
struct sdp_tsd *tsd, u32 pid_idx);
void print_all_filter_debug_info(
struct sdp_tsd *tsd);
void get_bank_router_info(
struct sdp_tsd *tsd, enum tsd_bank bank);
static inline enum tsd_bank_set get_bank_set_from_bank(
enum tsd_bank bank)
{
return bank/SDP_MAX_BANK_IN_SET;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif // #ifndef __SDP_UTIL_H__
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////