diff options
author | Thiago Santos <thiagoss@osg.samsung.com> | 2015-08-17 14:28:24 -0300 |
---|---|---|
committer | Thiago Santos <thiagoss@osg.samsung.com> | 2015-08-17 14:33:35 -0300 |
commit | 13d49d9b3e7e0e15680838ef5a9c71a9d6269283 (patch) | |
tree | 33520e45cceefecc0c740c65a8ba59ea2bea596b /ext | |
parent | 38d269f80d074f3077801fa43c8e90e7b1df27fc (diff) | |
download | gstreamer-plugins-good-13d49d9b3e7e0e15680838ef5a9c71a9d6269283.tar.gz |
flacenc: actually return true for accept-caps query handling
Diffstat (limited to 'ext')
-rw-r--r-- | ext/flac/gstflacenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c index 1907066aa..8be058a00 100644 --- a/ext/flac/gstflacenc.c +++ b/ext/flac/gstflacenc.c @@ -1292,6 +1292,7 @@ gst_flac_enc_sink_query (GstAudioEncoder * enc, GstQuery * query) gst_query_set_accept_caps_result (query, gst_caps_is_subset (caps, acceptable)); gst_caps_unref (acceptable); + ret = TRUE; } break; default: |