Commit 2fffa228 authored by Ilkka Ollakka's avatar Ilkka Ollakka

x264: use libx264 with 0-started pts values and scale them back

I'm not really sure why libx264 sometimes gives negative dts even if
given pts values are >> 0. So until I see why, I think this way works better
parent abfcb030
...@@ -699,7 +699,7 @@ struct encoder_sys_t ...@@ -699,7 +699,7 @@ struct encoder_sys_t
x264_t *h; x264_t *h;
x264_param_t param; x264_param_t param;
int64_t i_initial_delay; mtime_t i_initial_delay;
char *psz_stat_name; char *psz_stat_name;
}; };
...@@ -1276,6 +1276,12 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict ) ...@@ -1276,6 +1276,12 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
#endif #endif
if( likely(p_pict) ) { if( likely(p_pict) ) {
pic.i_pts = p_pict->date; pic.i_pts = p_pict->date;
/* scale pts starting from 0 as libx264 seems to return dts values
assume that
*/
if( unlikely( p_sys->i_initial_delay == 0 ) )
p_sys->i_initial_delay = p_pict->date;
pic.i_pts -= p_sys->i_initial_delay;
pic.img.i_csp = X264_CSP_I420; pic.img.i_csp = X264_CSP_I420;
pic.img.i_plane = p_pict->i_planes; pic.img.i_plane = p_pict->i_planes;
for( i = 0; i < p_pict->i_planes; i++ ) for( i = 0; i < p_pict->i_planes; i++ )
...@@ -1322,16 +1328,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict ) ...@@ -1322,16 +1328,7 @@ static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
p_enc->fmt_in.video.i_frame_rate_base / p_enc->fmt_in.video.i_frame_rate_base /
p_enc->fmt_in.video.i_frame_rate; p_enc->fmt_in.video.i_frame_rate;
/* libx264 gives pts/dts values from >= 83 onward, /* scale pts-values back*/
* also pts starts from 0 so dts can be negative,
* but vlc doesn't handle if dts is < VLC_TS_0 so we
* use that offset to get it right for vlc.
*/
if( p_sys->i_initial_delay == 0 && pic.i_dts < VLC_TS_0 )
{
p_sys->i_initial_delay = -1* pic.i_dts;
msg_Dbg( p_enc, "Initial delay is set to %d", p_sys->i_initial_delay );
}
p_block->i_pts = pic.i_pts + p_sys->i_initial_delay; p_block->i_pts = pic.i_pts + p_sys->i_initial_delay;
p_block->i_dts = pic.i_dts + p_sys->i_initial_delay; p_block->i_dts = pic.i_dts + p_sys->i_initial_delay;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment