mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
avidemux: support raw video with negative height
https://bugzilla.gnome.org/show_bug.cgi?id=695541
This commit is contained in:
parent
08c5a04691
commit
d7743cf7c6
1 changed files with 4 additions and 0 deletions
|
@ -4544,6 +4544,10 @@ gst_avi_demux_invert (GstAviStream * stream, GstBuffer * buf)
|
|||
return buf; /* Ignore non DIB buffers */
|
||||
}
|
||||
|
||||
/* raw rgb data is stored topdown, but instead of inverting the buffer, */
|
||||
/* some tools just negate the height field in the header (e.g. ffmpeg) */
|
||||
if (((gint32) stream->strf.vids->height) < 0)
|
||||
return buf;
|
||||
|
||||
h = stream->strf.vids->height;
|
||||
w = stream->strf.vids->width;
|
||||
|
|
Loading…
Reference in a new issue