Commit b8df288b authored by Laurent Aimar's avatar Laurent Aimar

* livedotcom: small warning fix for old version.

parent b3900df7
...@@ -950,8 +950,8 @@ static void StreamRead( void *p_private, unsigned int i_size, struct timeval pts ...@@ -950,8 +950,8 @@ static void StreamRead( void *p_private, unsigned int i_size, struct timeval pts
p_block = block_New( p_demux, i_size ); p_block = block_New( p_demux, i_size );
if( tk->fmt.i_codec == VLC_FOURCC('h','2','6','1') ) if( tk->fmt.i_codec == VLC_FOURCC('h','2','6','1') )
{ {
H261VideoRTPSource *h261Source = (H261VideoRTPSource*)tk->rtpSource;
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1081468800 #if LIVEMEDIA_LIBRARY_VERSION_INT >= 1081468800
H261VideoRTPSource *h261Source = (H261VideoRTPSource*)tk->rtpSource;
uint32_t header = h261Source->lastSpecialHeader(); uint32_t header = h261Source->lastSpecialHeader();
#else #else
uint32_t header = 0; uint32_t header = 0;
......
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