mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +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) \
|
||||
(fourcc == GST_RIFF_DIB || \
|
||||
fourcc == GST_RIFF_rgb || \
|
||||
fourcc == GST_RIFF_RGB || fourcc == GST_RIFF_RAW)
|
||||
(fourcc && \
|
||||
(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