Home
last modified time | relevance | path

Searched refs:p_stsc (Results 1 – 3 of 3) sorted by relevance

/dports/multimedia/vlc/vlc-3.0.16/modules/demux/mp4/
H A Dlibmp4.c3042 FREENULL( p_box->data.p_stsc->i_first_chunk ); in MP4_FreeBox_stsc()
3043 FREENULL( p_box->data.p_stsc->i_samples_per_chunk ); in MP4_FreeBox_stsc()
3044 FREENULL( p_box->data.p_stsc->i_sample_description_index ); in MP4_FreeBox_stsc()
3053 MP4_GETVERSIONFLAGS( p_box->data.p_stsc ); in MP4_ReadBox_stsc()
3060 p_box->data.p_stsc->i_samples_per_chunk = vlc_alloc( count, in MP4_ReadBox_stsc()
3064 if( unlikely( p_box->data.p_stsc->i_first_chunk == NULL in MP4_ReadBox_stsc()
3065 || p_box->data.p_stsc->i_samples_per_chunk == NULL in MP4_ReadBox_stsc()
3066 || p_box->data.p_stsc->i_sample_description_index == NULL ) ) in MP4_ReadBox_stsc()
3070 p_box->data.p_stsc->i_entry_count = count; in MP4_ReadBox_stsc()
3074 MP4_GET4BYTES( p_box->data.p_stsc->i_first_chunk[i] ); in MP4_ReadBox_stsc()
[all …]
H A Dmp4.c2295 MP4_Box_t *p_stsc; in TrackCreateChunksIndex() local
2302 ( !(p_stsc = MP4_BoxGet( p_demux_track->p_stbl, "stsc" ) ) )) in TrackCreateChunksIndex()
2339 i_index = BOXDATA(p_stsc)->i_entry_count; in TrackCreateChunksIndex()
2343 for( i_chunk = BOXDATA(p_stsc)->i_first_chunk[i_index] - 1; in TrackCreateChunksIndex()
2353 BOXDATA(p_stsc)->i_sample_description_index[i_index]; in TrackCreateChunksIndex()
2355 BOXDATA(p_stsc)->i_samples_per_chunk[i_index]; in TrackCreateChunksIndex()
2357 i_last = BOXDATA(p_stsc)->i_first_chunk[i_index] - 1; in TrackCreateChunksIndex()
H A Dlibmp4.h1730 MP4_Box_data_stsc_t *p_stsc; member