From: Soeren Apel Date: Tue, 23 May 2017 16:41:20 +0000 (+0200) Subject: DecodeSignal: Provide conversion data container sooner X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=ccccb91439b9de48a7bcc76c6fa45d1dc166a297;hp=ccccb91439b9de48a7bcc76c6fa45d1dc166a297;p=pulseview.git DecodeSignal: Provide conversion data container sooner Before, the converted_data_ container was only created once we had sample data coming in. This meant that it wasn't possible to assign a converted signal to a decoder. With this change, the data container is created even when there is no data to fill it with, allowing logic_data() to return a valid result and in turn allowing the user to assign the signal to a decoder. ---