hal_custom_video.c 10.5 KB
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
/*****************************************************************************
 * Filename:
 * ---------
 * hal_custom_video.c
 *
 * Project:
 * --------
 *   MAUI
 *
 * Description:
 * ------------
 *   This file is for customization of video features
 *
 * Author:
 * -------
 * -------
 *
 *============================================================================
 *             HISTORY
 * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
 *------------------------------------------------------------------------------
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 * removed!
 * removed!
 * removed!
 *
 *
 *
 *------------------------------------------------------------------------------
 * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
 *============================================================================
 ****************************************************************************/

#include "drv_features_video.h"
#include "hal_custom_video.h"
#include "hal_custom_video_if.h"
#include "kal_general_types.h"

VIDEO_CUSTOM_ERR_T HalCustomQueryVideoSettings(kal_uint32 u4Param, void* pOutput)
{
#if defined(__VIDEO_ARCHI_V2__)
    switch(u4Param)
    {
    case HALC_I_FRM_RATE:
        {
            kal_uint32* pu4Param = (kal_uint32*)pOutput;
            *pu4Param = I_FRAME_REFRESH_RATE;
        }
        break;
    default:
        return VC_ERR_INVALID_PARAM;
        //break;
    }

    return VC_ERR_NONE;
#else
    return VC_ERR_INVALID_PARAM;
#endif //__VIDEO_ARCHI_V2__
}

#define MPLVP_SETTING_NUM 4
/******************************************************************************
* customization of "A/V sync. mechanism"
******************************************************************************/
typedef struct
{
    kal_uint64 u8Settings[MPLVP_SETTING_NUM];
    //cust[0]   : the delta time of A/V to trigger jump to i event. delta time: millisecond
    //cust[1]   : the delta time of A/V to trigger stop audio and re-sync A/V event. delta time: millisecond
    //cust[2]   : the delta time to find the jumping target. delta time: millisecond
    //cust[3]   : N/A
    //cust[4]   : N/A
    //cust[5]   : N/A
    //cust[6]   : reserved
    //cust[7]   : reserved
    //cust[8]   : reserved
    //cust[9]   : reserved

} mply_custom_struct;

#if defined (__MPEG4_DEC_SUPPORT__)
static mply_custom_struct rMPLVP_MP4Setting =
    #if defined(MP4_CUSTOM_TABLE_SETTING_ENABLE)
    {MP4_CUSTOM_TABLE_SETTING_0,
     MP4_CUSTOM_TABLE_SETTING_1,
     MP4_CUSTOM_TABLE_SETTING_2,
     MP4_CUSTOM_TABLE_SETTING_3
     };
    #else /*default setting*/
        #if defined(MT6253) || defined(MT6252) || defined(MT6252H)
        {500,  99999999,  2000, 2000};
        #else
#ifdef __VE_DURATION_MODE__
        {2000,  99999999,  3000, 3500};
#else
        {100,  99999999,  3000, 3500};
#endif
        #endif
    #endif

    #if defined (__VE_STREAM_SUPPORT__)
    static mply_custom_struct rMPLVP_MP4StrmSetting =
#ifdef __VE_DURATION_MODE__
            {2000,  99999999,  3000, 2000};
#else
            {500,  99999999,  3000, 500};
#endif
    #endif
#endif

#if defined (__H264_DEC_SUPPORT__)
static mply_custom_struct rMPLVP_H264Setting =
    #if defined(H264_CUSTOM_TABLE_SETTING_ENABLE)
    {H264_CUSTOM_TABLE_SETTING_0,
     H264_CUSTOM_TABLE_SETTING_1,
     H264_CUSTOM_TABLE_SETTING_2,
     H264_CUSTOM_TABLE_SETTING_3
     };
    #else /*default setting*/
#ifdef __VE_DURATION_MODE__
    {2000,  99999999,  3000, 3500};
#else
    {100,  99999999,  3000, 3500};
#endif
    #endif

    #if defined (__VE_STREAM_SUPPORT__)
    static mply_custom_struct rMPLVP_H264StrmSetting =
#ifdef __VE_DURATION_MODE__
        {2000,  99999999,  3000, 2000};
#else
        {500,  99999999,  3000, 500};
#endif

    #if defined (__VE_STREAM_CMMB_SUPPORT__)
    static mply_custom_struct rMPLVP_H264CMMBSetting =
#ifdef __VE_DURATION_MODE__
        {2000,  99999999,  3000, 2000};
#else    
        {3500,  99999999,  3000, 3500};
#endif        
    #endif
    #endif
#endif

#if defined (__VP8_DEC_SW_SUPPORT__)
static mply_custom_struct rMPLVP_VP8Setting =
    #if defined(VP8_CUSTOM_TABLE_SETTING_ENABLE)
    {VP8_CUSTOM_TABLE_SETTING_0,
     VP8_CUSTOM_TABLE_SETTING_1,
     VP8_CUSTOM_TABLE_SETTING_2,
     VP8_CUSTOM_TABLE_SETTING_3
     };
    #else /*default setting*/
#ifdef __VE_DURATION_MODE__
    {2000,  99999999,  2000, 2000};
#else
    {500,  99999999,  2000, 2000};
#endif
    #endif

    #if defined (__VE_STREAM_SUPPORT__)
    static mply_custom_struct rMPLVP_VP8StrmSetting =
#ifdef __VE_DURATION_MODE__
        {2000,  99999999,  3000, 2000};
#else
        {500,  99999999,  2000, 2000};
#endif
    #endif
#endif

#if defined (__RM_DEC_SUPPORT__)
static mply_custom_struct rMPLVP_RMSetting =
    #if defined(RM_CUSTOM_TABLE_SETTING_ENABLE)
    {RM_CUSTOM_TABLE_SETTING_0,
     RM_CUSTOM_TABLE_SETTING_1,
     RM_CUSTOM_TABLE_SETTING_2,
     RM_CUSTOM_TABLE_SETTING_3
     };
    #else /*default setting*/
#ifdef __VE_DURATION_MODE__
    { 2000, 10000,  2000, 2000};
#else
    { 30, 10000,  2000, 2000};
#endif
    #endif

    #if defined (__VE_STREAM_SUPPORT__)
    static mply_custom_struct rMPLVP_RMStrmSetting =
#ifdef __VE_DURATION_MODE__
        {2000, 10000,  2000, 2000};
#else
        { 30, 10000,  2000, 2000};
#endif
    #endif
#endif

__inline static kal_uint64 _MPLVP_GetPlayerSetting(mply_custom_format_enum eFormat, kal_uint32 u4IDX)
{
    if (u4IDX >= MPLVP_SETTING_NUM)
    {
        return 0;
    }

    switch(eFormat)
    {
#if defined (__MPEG4_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_MP4:
        return rMPLVP_MP4Setting.u8Settings[u4IDX];
    //break;
#endif
#if defined (__H264_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_H264:
        return rMPLVP_H264Setting.u8Settings[u4IDX];
    //break;
#endif
#if defined (__RM_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_RM:
        return rMPLVP_RMSetting.u8Settings[u4IDX];
    //break;
#endif
#if defined (__VP8_DEC_SW_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_VP8:
        return rMPLVP_VP8Setting.u8Settings[u4IDX];
    //break;
#endif
    default:
        return 0;
    }
}

#if defined (__VE_STREAM_SUPPORT__)
__inline static kal_uint64 _MPLVP_GetStreamingSetting(mply_custom_format_enum eFormat, kal_uint32 u4IDX)
{
    u4IDX -= CUS_IDX_STREAMING_SETTING_START;
    if (u4IDX >= MPLVP_SETTING_NUM)
    {
        return 0;
    }

    switch(eFormat)
    {
#if defined (__MPEG4_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_MP4:
        return rMPLVP_MP4StrmSetting.u8Settings[u4IDX];
    break;
#endif
#if defined (__H264_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_H264:
        return rMPLVP_H264StrmSetting.u8Settings[u4IDX];
    break;
#endif
#if defined (__RM_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_RM:
        return rMPLVP_RMStrmSetting.u8Settings[u4IDX];
    break;
#endif
#if defined (__VP8_DEC_SW_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_VP8:
        return rMPLVP_VP8StrmSetting.u8Settings[u4IDX];
    break;
#endif
    default:
        return 0;
    }
}

#if defined(__VE_STREAM_CMMB_SUPPORT__)
static kal_uint64 _MPLVP_GetCMMBSetting(mply_custom_format_enum eFormat, kal_uint32 u4IDX)
{
    u4IDX -= CUS_IDX_CMMB_SETTING_START;
    if (u4IDX >= MPLVP_SETTING_NUM)
    {
        return 0;
    }

    switch(eFormat)
    {
#if defined (__H264_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_H264:
        return rMPLVP_H264CMMBSetting.u8Settings[u4IDX];
    break;
#endif
    default:
        return 0;
    }
}
#endif
#endif

kal_uint64 mply_custom_get_cust(mply_custom_format_enum eFormat, kal_uint32 u4IDX)
{
#if defined (__VE_STREAM_SUPPORT__)
    #if defined(__VE_STREAM_CMMB_SUPPORT__)
    if (u4IDX >= CUS_IDX_CMMB_SETTING_START)
    {
        return _MPLVP_GetCMMBSetting(eFormat, u4IDX);
    }
    else
    #endif
    if (u4IDX >= CUS_IDX_STREAMING_SETTING_START)
    {
        return _MPLVP_GetStreamingSetting(eFormat, u4IDX);
    }
    else
#endif
    {
        return _MPLVP_GetPlayerSetting(eFormat, u4IDX);
    }
}

static void _MPLVP_SetPlayerSetting(mply_custom_format_enum eFormat, kal_uint32 u4IDX, kal_uint64 u4NewSetting)
{
    if (u4IDX >= MPLVP_SETTING_NUM)
    {
        return;
    }

    switch(eFormat)
    {
#if defined (__MPEG4_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_MP4:
        rMPLVP_MP4Setting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__H264_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_H264:
        rMPLVP_H264Setting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__RM_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_RM:
        rMPLVP_RMSetting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__VP8_DEC_SW_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_VP8:
        rMPLVP_VP8Setting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
    default:
        return;
    }
}

#if defined (__VE_STREAM_SUPPORT__)
static void _MPLVP_SetStreamingSetting(mply_custom_format_enum eFormat, kal_uint32 u4IDX, kal_uint64 u4NewSetting)
{
    u4IDX -= CUS_IDX_STREAMING_SETTING_START;
    if (u4IDX >= MPLVP_SETTING_NUM)
    {
        return;
    }

    switch(eFormat)
    {
#if defined (__MPEG4_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_MP4:
        rMPLVP_MP4StrmSetting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__H264_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_H264:
        rMPLVP_H264StrmSetting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__RM_DEC_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_RM:
        rMPLVP_RMStrmSetting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
#if defined (__VP8_DEC_SW_SUPPORT__)
    case MPLY_CUSTOM_FORMAT_VP8:
        rMPLVP_VP8StrmSetting.u8Settings[u4IDX] = u4NewSetting;
    break;
#endif
    default:
        return;
        }
}
#endif

void mply_custom_set_cust(mply_custom_format_enum eFormat, kal_uint32 u4IDX, kal_uint64 u4NewSetting)
{
#if defined (__VE_STREAM_SUPPORT__)
    if (u4IDX >= CUS_IDX_STREAMING_SETTING_START)
    {
        _MPLVP_SetStreamingSetting(eFormat, u4IDX, u4NewSetting);
    }
    else
#endif
    {
        _MPLVP_SetPlayerSetting(eFormat, u4IDX, u4NewSetting);
    }
}