Commit 3ddc0024 authored by Laurent Aimar's avatar Laurent Aimar

Fixed [02184fcd]

Sorry, I forgot 2 files.
parent 02184fcd
......@@ -151,6 +151,7 @@ static subpicture_t *Decode( decoder_t *p_dec, block_t **pp_block )
/* FIXME: what the, we shouldn’t need to allocate 64k of buffer --sam. */
p_sys->i_spu = block_ChainExtract( p_spu_block, p_sys->buffer, 65536 );
p_sys->i_pts = p_spu_block->i_pts;
p_sys->i_rate = p_spu_block->i_rate;
block_ChainRelease( p_spu_block );
/* Parse and decode */
......
......@@ -28,6 +28,7 @@ struct decoder_sys_t
int b_packetizer;
mtime_t i_pts;
int i_rate;
unsigned int i_spu_size;
unsigned int i_rle_size;
unsigned int i_spu;
......
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