Commit 590be7db authored by Francois Cartegnie's avatar Francois Cartegnie

demux: mp4: remove dash flag

parent b798c669
...@@ -84,7 +84,6 @@ struct demux_sys_t ...@@ -84,7 +84,6 @@ struct demux_sys_t
bool b_fastseekable; bool b_fastseekable;
bool b_seekmode; bool b_seekmode;
bool b_smooth; /* Is it Smooth Streaming? */ bool b_smooth; /* Is it Smooth Streaming? */
bool b_dash;
bool b_index_probed; bool b_index_probed;
bool b_fragments_probed; bool b_fragments_probed;
...@@ -636,7 +635,6 @@ static int Open( vlc_object_t * p_this ) ...@@ -636,7 +635,6 @@ static int Open( vlc_object_t * p_this )
break; break;
case MAJOR_dash: case MAJOR_dash:
msg_Dbg( p_demux, "DASH Stream file" ); msg_Dbg( p_demux, "DASH Stream file" );
p_sys->b_dash = true;
break; break;
default: default:
msg_Dbg( p_demux, msg_Dbg( p_demux,
...@@ -650,7 +648,6 @@ static int Open( vlc_object_t * p_this ) ...@@ -650,7 +648,6 @@ static int Open( vlc_object_t * p_this )
if (BOXDATA(p_ftyp)->i_compatible_brands[i] == MAJOR_dash) if (BOXDATA(p_ftyp)->i_compatible_brands[i] == MAJOR_dash)
{ {
msg_Dbg( p_demux, "DASH Stream file" ); msg_Dbg( p_demux, "DASH Stream file" );
p_sys->b_dash = true;
} }
} }
} }
......
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