Beispiel #1
0
Datei: hevc.c Projekt: 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 );
}
Beispiel #2
0
Datei: h264.c Projekt: 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 );
}