Commit 5516edca authored by Francois Cartegnie's avatar Francois Cartegnie

Revert "demux: mp4: fix fallback on PAR"

This reverts commit bcf79896.

According to some other samples, doesn't sound like a correct fix.
parent 4508f274
...@@ -1773,15 +1773,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track, ...@@ -1773,15 +1773,8 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
if( p_pasp && p_pasp->data.p_pasp->i_horizontal_spacing > 0 && if( p_pasp && p_pasp->data.p_pasp->i_horizontal_spacing > 0 &&
p_pasp->data.p_pasp->i_vertical_spacing > 0 ) p_pasp->data.p_pasp->i_vertical_spacing > 0 )
{ {
/* Convert pixel ratio to picture/display aspect ratio */ p_track->fmt.video.i_sar_num = p_pasp->data.p_pasp->i_horizontal_spacing;
/* SAR * PAR -> DAR */ p_track->fmt.video.i_sar_den = p_pasp->data.p_pasp->i_vertical_spacing;
vlc_ureduce( &p_track->fmt.video.i_sar_num, &p_track->fmt.video.i_sar_den,
(uint64_t) p_pasp->data.p_pasp->i_horizontal_spacing
* p_track->fmt.video.i_width,
(uint64_t) p_pasp->data.p_pasp->i_vertical_spacing
* p_track->fmt.video.i_height,
UINT32_MAX
);
} }
/* Support for cropping (eg. in H263 files) */ /* Support for cropping (eg. in H263 files) */
......
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