Exemplo n.º 1
0
Arquivo: vc1.c Projeto: jeeb/L-SMASH
void vc1_cleanup_parser( vc1_info_t *info )
{
    if( !info )
        return;
    lsmash_destroy_vc1_headers( &info->dvc1_param );
    lsmash_destroy_multiple_buffers( info->buffer.bank );
    lsmash_bits_adhoc_cleanup( info->bits );
}
Exemplo n.º 2
0
void vc1_cleanup_parser( vc1_info_t *info )
{
    if( !info )
        return;
    lsmash_destroy_vc1_headers( &info->dvc1_param );
    lsmash_stream_buffers_cleanup( info->buffer.sb );
    lsmash_bits_adhoc_cleanup( info->bits );
    info->bits = NULL;
}