Commit 0a3e0334 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

dvbsub: Remove write only variable.

parent 8722fe58
...@@ -1475,7 +1475,7 @@ static subpicture_t *render( decoder_t *p_dec ) ...@@ -1475,7 +1475,7 @@ static subpicture_t *render( decoder_t *p_dec )
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
subpicture_t *p_spu; subpicture_t *p_spu;
subpicture_region_t **pp_spu_region; subpicture_region_t **pp_spu_region;
int i, j, i_timeout = 0; int i, j;
int i_base_x; int i_base_x;
int i_base_y; int i_base_y;
...@@ -1536,8 +1536,6 @@ static subpicture_t *render( decoder_t *p_dec ) ...@@ -1536,8 +1536,6 @@ static subpicture_t *render( decoder_t *p_dec )
video_palette_t palette; video_palette_t palette;
int i_pitch; int i_pitch;
i_timeout = p_sys->p_page->i_timeout;
p_regiondef = &p_sys->p_page->p_region_defs[i]; p_regiondef = &p_sys->p_page->p_region_defs[i];
/* Find associated region */ /* Find associated region */
......
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