live555.cpp: Add support for quicktime specific audio

doesn't work for the sample stream I tested, but I think that stream
is bad
parent 3253ef6e
...@@ -492,6 +492,11 @@ static int Open ( vlc_object_t *p_this ) ...@@ -492,6 +492,11 @@ static int Open ( vlc_object_t *p_this )
p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf", p_sys->p_out_asf = stream_DemuxNew( p_demux, "asf",
p_demux->out ); p_demux->out );
} }
else if( !strcmp( sub->codecName(), "X-QT" ) ||
!strcmp( sub->codecName(), "X-QUICKTIME" ) )
{
tk->b_quicktime = VLC_TRUE;
}
} }
else if( !strcmp( sub->mediumName(), "video" ) ) else if( !strcmp( sub->mediumName(), "video" ) )
{ {
...@@ -1324,6 +1329,7 @@ static void StreamRead( void *p_private, unsigned int i_size, ...@@ -1324,6 +1329,7 @@ static void StreamRead( void *p_private, unsigned int i_size,
QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState; QuickTimeGenericRTPSource::QTState &qtState = qtRTPSource->qtState;
uint8_t *sdAtom = (uint8_t*)&qtState.sdAtom[4]; uint8_t *sdAtom = (uint8_t*)&qtState.sdAtom[4];
if( tk->fmt.i_cat == VIDEO_ES ) {
if( qtState.sdAtomSize < 16 + 32 ) if( qtState.sdAtomSize < 16 + 32 )
{ {
/* invalid */ /* invalid */
...@@ -1339,6 +1345,17 @@ static void StreamRead( void *p_private, unsigned int i_size, ...@@ -1339,6 +1345,17 @@ static void StreamRead( void *p_private, unsigned int i_size,
tk->fmt.p_extra = malloc( tk->fmt.i_extra ); tk->fmt.p_extra = malloc( tk->fmt.i_extra );
memcpy( tk->fmt.p_extra, &sdAtom[12], tk->fmt.i_extra ); memcpy( tk->fmt.p_extra, &sdAtom[12], tk->fmt.i_extra );
}
else {
if( qtState.sdAtomSize < 4 )
{
/* invalid */
p_sys->event = 0xff;
tk->waiting = 0;
return;
}
tk->fmt.i_codec = VLC_FOURCC(sdAtom[0],sdAtom[1],sdAtom[2],sdAtom[3]);
}
tk->p_es = es_out_Add( p_demux->out, &tk->fmt ); tk->p_es = es_out_Add( p_demux->out, &tk->fmt );
} }
......
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