summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-02-06 12:18:45 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-02-06 12:18:45 +0000
commit3a27956d47bbf408ad8e0bfd10cfcefb4a5ddc04 (patch)
treed146cc3bbd0de2808d531aab9765e1c174b29e64 /ext/flac
parent323331a0514009bf47b8a3142e75d9c4a2bcc1d2 (diff)
Pass unhandled queries upstream instead of just dropping them (#326446). Update query type arrays here and there.
Original commit message from CVS: * ext/dv/gstdvdemux.c: (gst_dvdemux_src_query), (gst_dvdemux_sink_query): * ext/flac/gstflacdec.c: (gst_flac_dec_src_query): * ext/speex/gstspeexdec.c: (speex_get_query_types), (speex_dec_src_query): * ext/speex/gstspeexenc.c: (gst_speexenc_src_query), (gst_speexenc_sink_query): * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query): * gst/matroska/matroska-demux.c: (gst_matroska_demux_get_src_query_types), (gst_matroska_demux_handle_src_query): * gst/wavparse/gstwavparse.c: (gst_wavparse_get_query_types), (gst_wavparse_pad_query): Pass unhandled queries upstream instead of just dropping them (#326446). Update query type arrays here and there.
Diffstat (limited to 'ext/flac')
-rw-r--r--ext/flac/gstflacdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c
index 836eadce..92aa4e2c 100644
--- a/ext/flac/gstflacdec.c
+++ b/ext/flac/gstflacdec.c
@@ -826,7 +826,7 @@ gst_flac_dec_src_query (GstPad * pad, GstQuery * query)
}
default:{
- res = FALSE;
+ res = gst_pad_query_default (pad, query);
break;
}
}