Commit fd5a24a4 authored by Christophe Massiot's avatar Christophe Massiot

Another attempt for the same bug...

parent b593a03b
...@@ -207,8 +207,11 @@ static void RunThread (adec_thread_t * p_adec) ...@@ -207,8 +207,11 @@ static void RunThread (adec_thread_t * p_adec)
do do
{ {
adec_byte_stream_next ( p_byte_stream ); adec_byte_stream_next ( p_byte_stream );
} while ( !((U32_AT((u32 *)p_adec->p_data->p_payload_start) & 0xFFFFFF00) == 0x100) && (!p_adec->b_die) } while ( !(!*p_adec->p_data->p_payload_start
&& (!p_adec->b_error) ); && !p_adec->p_data->p_payload_start[1]
&& p_adec->p_data->p_payload_start[2] == 1)
&& (!p_adec->b_die)
&& (!p_adec->b_error) );
if( p_adec->b_die || p_adec->b_error ) if( p_adec->b_die || p_adec->b_error )
{ {
......
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