mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-05 15:49:54 +00:00
avidemux: fix wrong stride when inverting uncompressed video
Such frames have a stride multiple of 4, see http://lscube.org/pipermail/ffmpeg-issues/2010-April/010247.html. This showed up on a sample using a odd width of 24 bit video. https://bugzilla.gnome.org/show_bug.cgi?id=652288
This commit is contained in:
parent
9c3516116a
commit
f4506d5181
1 changed files with 1 additions and 1 deletions
|
@ -4472,7 +4472,7 @@ gst_avi_demux_invert (GstAviStream * stream, GstBuffer * buf)
|
|||
|
||||
h = stream->strf.vids->height;
|
||||
w = stream->strf.vids->width;
|
||||
stride = w * (bpp / 8);
|
||||
stride = GST_ROUND_UP_4 (w * (bpp / 8));
|
||||
|
||||
buf = gst_buffer_make_writable (buf);
|
||||
if (GST_BUFFER_SIZE (buf) < (stride * h)) {
|
||||
|
|
Loading…
Reference in a new issue