Commit b876d12e authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Also pass along the USER DATA of mpeg4

  This should help identify the producing encoder and fix some issues with codec specific problems
parent 4ecb8628
...@@ -334,8 +334,8 @@ static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag ) ...@@ -334,8 +334,8 @@ static block_t *ParseMPEGBlock( decoder_t *p_dec, block_t *p_frag )
decoder_sys_t *p_sys = p_dec->p_sys; decoder_sys_t *p_sys = p_dec->p_sys;
block_t *p_pic = NULL; block_t *p_pic = NULL;
if( p_frag->p_buffer[3] == 0xB0 || p_frag->p_buffer[3] == 0xB1 ) if( p_frag->p_buffer[3] == 0xB0 || p_frag->p_buffer[3] == 0xB1 || p_frag->p_buffer[3] == 0xB2 )
{ { /* VOS and USERDATA */
#if 0 #if 0
/* Remove VOS start/end code from the original stream */ /* Remove VOS start/end code from the original stream */
block_Release( p_frag ); block_Release( p_frag );
......
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