Example #1
0
File: hevc.c Project: etix/vlc
/*****************************************************************************
 * GetCc:
 *****************************************************************************/
static block_t *GetCc( decoder_t *p_dec, bool pb_present[4] )
{
    return cc_storage_get_current( p_dec->p_sys->p_ccs, pb_present );
}
Example #2
0
File: h264.c Project: IAPark/vlc
/*****************************************************************************
 * GetCc:
 *****************************************************************************/
static block_t *GetCc( decoder_t *p_dec, bool pb_present[4], int *pi_reorder_depth )
{
    return cc_storage_get_current( p_dec->p_sys->p_ccs, pb_present, pi_reorder_depth );
}