mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
avidemux: Don't consider 0 fcc_handler as uncompressed.
Just avoids a warning
This commit is contained in:
parent
899dad8949
commit
c6b9f5b25a
1 changed files with 4 additions and 3 deletions
|
@ -4417,9 +4417,10 @@ swap_line (guint8 * d1, guint8 * d2, guint8 * tmp, gint bytes)
|
||||||
|
|
||||||
|
|
||||||
#define gst_avi_demux_is_uncompressed(fourcc) \
|
#define gst_avi_demux_is_uncompressed(fourcc) \
|
||||||
(fourcc == GST_RIFF_DIB || \
|
(fourcc && \
|
||||||
fourcc == GST_RIFF_rgb || \
|
(fourcc == GST_RIFF_DIB || \
|
||||||
fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW)
|
fourcc == GST_RIFF_rgb || \
|
||||||
|
fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW))
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Invert DIB buffers... Takes existing buffer and
|
* Invert DIB buffers... Takes existing buffer and
|
||||||
|
|
Loading…
Reference in a new issue