Skip to content
Snippets Groups Projects
Commit 25bc2271 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed:
Browse files

packetizer: h264: check for null block

corner case when frame contains only AU delimiter
parent 04585fdf
No related branches found
No related tags found
No related merge requests found
......@@ -606,7 +606,9 @@ static block_t *OutputPicture( decoder_t *p_dec )
p_head->p_next = p_list;
else
p_head = p_list;
block_ChainAppend( &p_head, p_sys->p_frame );
if( p_sys->p_frame )
block_ChainAppend( &p_head, p_sys->p_frame );
p_pic = block_ChainGather( p_head );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment