mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 04:45:36 +00:00
Revert "avidemux: Don't consider 0 fcc_handler as uncompressed."
This reverts commit c6b9f5b25a
.
fourcc GST_RIFF_rgb = 0 still leads to raw uncompressed rgb caps.
See also https://bugzilla.gnome.org/show_bug.cgi?id=673898
This commit is contained in:
parent
942d745cf1
commit
e5369901ad
1 changed files with 3 additions and 4 deletions
|
@ -4444,10 +4444,9 @@ swap_line (guint8 * d1, guint8 * d2, guint8 * tmp, gint bytes)
|
|||
|
||||
|
||||
#define gst_avi_demux_is_uncompressed(fourcc) \
|
||||
(fourcc && \
|
||||
(fourcc == GST_RIFF_DIB || \
|
||||
fourcc == GST_RIFF_rgb || \
|
||||
fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW))
|
||||
(fourcc == GST_RIFF_DIB || \
|
||||
fourcc == GST_RIFF_rgb || \
|
||||
fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW)
|
||||
|
||||
/*
|
||||
* Invert DIB buffers... Takes existing buffer and
|
||||
|
|
Loading…
Reference in a new issue