Commit 9200678d authored by Laurent Aimar's avatar Laurent Aimar

Use tha same date for updating subtitles regions.

parent e062f9de
...@@ -954,6 +954,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt, ...@@ -954,6 +954,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
subpicture_t *p_subpic_list, subpicture_t *p_subpic_list,
int i_scale_width_orig, int i_scale_height_orig ) int i_scale_width_orig, int i_scale_height_orig )
{ {
const mtime_t i_current_date = mdate();
int i_source_video_width; int i_source_video_width;
int i_source_video_height; int i_source_video_height;
subpicture_t *p_subpic; subpicture_t *p_subpic;
...@@ -1001,7 +1002,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt, ...@@ -1001,7 +1002,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
fmt_org.i_height = fmt_org.i_height =
fmt_org.i_visible_height = i_source_video_height; fmt_org.i_visible_height = i_source_video_height;
p_subpic->pf_update_regions( &fmt_org, p_spu, p_subpic, mdate() ); p_subpic->pf_update_regions( &fmt_org, p_spu, p_subpic, i_current_date );
} }
} }
......
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