source: svn/trunk/newcon3bcm2_21bu/nexus/app/nanotv/bapp_settings.h @ 2

Last change on this file since 2 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
  • Property svn:executable set to *
File size: 5.3 KB
Line 
1/******************************************************************************
2 *    (c)2008-2009 Broadcom Corporation
3 *
4 * This program is the proprietary software of Broadcom Corporation and/or its licensors,
5 * and may only be used, duplicated, modified or distributed pursuant to the terms and
6 * conditions of a separate, written license agreement executed between you and Broadcom
7 * (an "Authorized License").  Except as set forth in an Authorized License, Broadcom grants
8 * no license (express or implied), right to use, or waiver of any kind with respect to the
9 * Software, and Broadcom expressly reserves all rights in and to the Software and all
10 * intellectual property rights therein.  IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU
11 * HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY
12 * NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE.
13 *
14 * Except as expressly set forth in the Authorized License,
15 *
16 * 1.     This program, including its structure, sequence and organization, constitutes the valuable trade
17 * secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof,
18 * and to use this information only in connection with your use of Broadcom integrated circuit products.
19 *
20 * 2.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
21 * AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR
22 * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
23 * THE SOFTWARE.  BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES
24 * OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE,
25 * LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION
26 * OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF
27 * USE OR PERFORMANCE OF THE SOFTWARE.
28 *
29 * 3.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS
30 * LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR
31 * EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR
32 * USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF
33 * THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT
34 * ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE
35 * LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF
36 * ANY LIMITED REMEDY.
37 *
38 * $brcm_Workfile:  $
39 * $brcm_Revision:  $
40 * $brcm_Date:  $
41 *
42 * Module Description:
43 *
44 * Manage application settings like volume, channel map, etc.
45 *
46 * Revision History:
47 *
48 * Created: 09/28/2009 by Jeff Fisher
49 *
50 * $brcm_Log:  $
51 *
52 *
53 *****************************************************************************/
54#ifndef BAPP_SETTINGS_H__
55#define BAPP_SETTINGS_H__
56
57#include "bapp_types.h"
58#define MAX_CH_NAME_CHARS               32
59#define MAX_CHANNELS            256
60#define RRT_BUF_LEN                     (1024 + 188)
61
62#define MAX_RRT_DIM                             128
63#define MAX_RRT_VAL                             16
64/*
65 * Structure defining a unit of data storage
66 */
67typedef struct bapp_ch_t
68{
69    unsigned int major      : 10;
70    unsigned int minor      : 10;
71    unsigned int freq_idx   : 8;
72    unsigned int psi        : 1;
73    unsigned int pcr_pid    : 13;
74    unsigned int video_pid  : 13;
75    unsigned int has_lang   : 3;
76        unsigned int hidden     : 1;
77    unsigned short audio_pid[3];
78    unsigned short ch_name[MAX_CH_NAME_CHARS];
79}bapp_ch_t;
80
81/**
82Summary:
83        main application reference obtained bapp_open
84**/
85typedef struct bapp_settings_t
86{
87    unsigned int sound                 : 2;
88    unsigned int picture               : 1;
89    unsigned int language              : 2;
90    unsigned int auto_power            : 2;
91    unsigned int wiz_completed         : 1;
92    unsigned int ratings_lock          : 2;
93    unsigned int ratings_tv            : 18;
94    unsigned int ratings_movies        : 7;
95    unsigned int content_d             : 1;
96    unsigned int content_l             : 1;
97    unsigned int content_s             : 1;
98    unsigned int content_v             : 1;
99        unsigned int captions_basic        : 4;
100        unsigned int captions_font         : 3;
101        unsigned int captions_font_size    : 2;
102        unsigned int captions_font_style   : 2;
103        unsigned int captions_font_color   : 4;
104        unsigned int captions_font_opacity : 3;
105        unsigned int captions_back_color   : 4;
106        unsigned int captions_back_opacity : 3;
107        unsigned int captions_edge_color   : 4;
108        unsigned int captions_edge_type    : 3;
109        unsigned int auto_power_off        : 1;
110        unsigned int rrt_status            : 2;
111        unsigned int time_zone             : 4;
112        unsigned int dst                       : 1;
113    unsigned int cur_ch_num            : 8;
114    unsigned int audio_vol             : 7;
115        unsigned int last_rrt_id           : 16;
116    unsigned int pin                   : 32;
117    unsigned char num_channels;
118    unsigned short ratings_rrt[MAX_RRT_DIM];
119    unsigned char rrt[RRT_BUF_LEN];
120    bapp_ch_t ch[MAX_CHANNELS];
121}bapp_settings_t;
122
123#ifdef __cplusplus
124extern "C" {
125#endif
126
127/**
128Summary:
129        Initialize settings to default values.
130**/
131
132bapp_result_t bapp_settings_init(bapp_settings_t *p_settings);
133
134
135/**
136Summary:
137        Save the settings.
138**/
139bapp_result_t bapp_settings_save(bapp_settings_t *p_settings);
140
141/**
142Summary:
143        Load the settings.
144**/
145bapp_result_t bapp_settings_load(bapp_settings_t *p_settings);
146
147#ifdef __cplusplus
148}
149#endif
150
151#endif /* BAPP_SETTINGS_H__ */
Note: See TracBrowser for help on using the repository browser.