Commit 5a08315d authored by Steve Lhomme's avatar Steve Lhomme

mkv.cpp: support aspect ratio for video tracks

parent 05719817
...@@ -2583,6 +2583,8 @@ static void ParseTrackEntry( demux_t *p_demux, EbmlMaster *m ) ...@@ -2583,6 +2583,8 @@ static void ParseTrackEntry( demux_t *p_demux, EbmlMaster *m )
msg_Dbg( p_demux, "| | | | + Unknown (%s)", typeid(*l).name() ); msg_Dbg( p_demux, "| | | | + Unknown (%s)", typeid(*l).name() );
} }
} }
if ( tk->fmt.video.i_visible_height && tk->fmt.video.i_visible_width )
tk->fmt.video.i_aspect = VOUT_ASPECT_FACTOR * tk->fmt.video.i_visible_width / tk->fmt.video.i_visible_height;
} }
else if( MKV_IS_ID( l, KaxTrackAudio ) ) else if( MKV_IS_ID( l, KaxTrackAudio ) )
{ {
......
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