projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08c5a04
)
avidemux: support raw video with negative height
author
Dirk Van Haerenborgh
<vhdirk@gmail.com>
Sun, 10 Mar 2013 08:25:34 +0000
(09:25 +0100)
committer
Sebastian Dröge
<sebastian.droege@collabora.co.uk>
Mon, 11 Mar 2013 13:23:46 +0000
(14:23 +0100)
https://bugzilla.gnome.org/show_bug.cgi?id=695541
gst/avi/gstavidemux.c
patch
|
blob
|
history
diff --git
a/gst/avi/gstavidemux.c
b/gst/avi/gstavidemux.c
index
49364eb
..
8bc0107
100644
(file)
--- a/
gst/avi/gstavidemux.c
+++ b/
gst/avi/gstavidemux.c
@@
-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;