Commit 0eeed6e9 authored by Laurent Aimar's avatar Laurent Aimar

Parse *only* NAL SEI for Closed Caption.

parent a43be925
...@@ -758,6 +758,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, bool *pb_used_ts, block_t *p_fr ...@@ -758,6 +758,7 @@ static block_t *ParseNALBlock( decoder_t *p_dec, bool *pb_used_ts, block_t *p_fr
p_pic = OutputPicture( p_dec ); p_pic = OutputPicture( p_dec );
/* Parse SEI for CC support */ /* Parse SEI for CC support */
if( i_nal_type == NAL_SEI )
ParseSei( p_dec, p_frag ); ParseSei( p_dec, 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