Commit 10c867dd authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

PVA: remove write-only variable

parent 4eb307c4
...@@ -380,7 +380,6 @@ static void ParsePES( demux_t *p_demux ) ...@@ -380,7 +380,6 @@ static void ParsePES( demux_t *p_demux )
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
block_t *p_pes = p_sys->p_pes; block_t *p_pes = p_sys->p_pes;
uint8_t hdr[30]; uint8_t hdr[30];
int i_pes_size;
unsigned i_skip; unsigned i_skip;
mtime_t i_dts = -1; mtime_t i_dts = -1;
...@@ -398,7 +397,7 @@ static void ParsePES( demux_t *p_demux ) ...@@ -398,7 +397,7 @@ static void ParsePES( demux_t *p_demux )
block_ChainRelease( p_pes ); block_ChainRelease( p_pes );
return; return;
} }
i_pes_size = GetWBE( &hdr[4] ); GetWBE( &hdr[4] ); /* i_pes_size */
/* we assume mpeg2 PES */ /* we assume mpeg2 PES */
i_skip = hdr[8] + 9; i_skip = hdr[8] + 9;
......
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