Browse Source

demux: scte: fix bogus vlc_tick_t conversion

Originally introduced in 7e3dcdd09c.

(cherry picked from commit e3adccef03) (edited)
edited:
- 3.0 did not use FROM_SCALE
cherry-pick-c5513cf9
Steve Lhomme 1 year ago
committed by François Cartegnie
parent
commit
1f037b1739
  1. 2
      modules/demux/mpeg/ts_scte.c

2
modules/demux/mpeg/ts_scte.c

@ -110,7 +110,7 @@ void SCTE27_Section_Callback( demux_t *p_demux,
}
p_content->i_dts = p_content->i_pts = VLC_TICK_0 + i_date * 100 / 9;
p_content->i_dts = p_content->i_pts = i_date;
//PCRFixHandle( p_demux, p_pmt, p_content );
if( p_pes->p_es->id )

Loading…
Cancel
Save