mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
qtdemux: set the pixel-aspect-ratio field also for par=1/1
https://bugzilla.gnome.org/show_bug.cgi?id=625302
This commit is contained in:
parent
8696d10a5b
commit
e6d7e69844
1 changed files with 5 additions and 5 deletions
|
@ -3981,11 +3981,11 @@ gst_qtdemux_add_stream (GstQTDemux * qtdemux,
|
|||
/* calculate the pixel aspect ratio using the display and pixel w/h */
|
||||
n = stream->display_width * stream->height;
|
||||
d = stream->display_height * stream->width;
|
||||
if (n != d) {
|
||||
GST_DEBUG_OBJECT (qtdemux, "setting PAR to %d/%d", n, d);
|
||||
gst_caps_set_simple (stream->caps, "pixel-aspect-ratio",
|
||||
GST_TYPE_FRACTION, n, d, NULL);
|
||||
}
|
||||
if (n == d)
|
||||
n = d = 1;
|
||||
GST_DEBUG_OBJECT (qtdemux, "setting PAR to %d/%d", n, d);
|
||||
gst_caps_set_simple (stream->caps, "pixel-aspect-ratio",
|
||||
GST_TYPE_FRACTION, n, d, NULL);
|
||||
}
|
||||
|
||||
/* qt file might have pasp atom */
|
||||
|
|
Loading…
Reference in a new issue