Module: sems Branch: master Commit: 43d93d4f7df6eaca9410cd00227e4db6bf03a397 URL: https://github.com/sems-server/sems/commit/43d93d4f7df6eaca9410cd00227e4db6bf03a397
Author: Mikko Lehto <[email protected]> Committer: Mikko Lehto <[email protected]> Date: 2016-02-15T23:14:25+02:00 core: Set 'negotiate_fmt' initializers to NULL --- Modified: core/AmPlugIn.cpp Modified: core/AmPrecodedFile.cpp --- Diff: https://github.com/sems-server/sems/commit/43d93d4f7df6eaca9410cd00227e4db6bf03a397.diff Patch: https://github.com/sems-server/sems/commit/43d93d4f7df6eaca9410cd00227e4db6bf03a397.patch --- diff --git a/core/AmPlugIn.cpp b/core/AmPlugIn.cpp index 3e82557..db05d58 100644 --- a/core/AmPlugIn.cpp +++ b/core/AmPlugIn.cpp @@ -78,7 +78,8 @@ amci_codec_t _codec_pcm16 = { NULL, NULL, pcm16_bytes2samples, - pcm16_samples2bytes + pcm16_samples2bytes, + NULL }; amci_codec_t _codec_tevent = { @@ -89,7 +90,8 @@ amci_codec_t _codec_tevent = { NULL, NULL, tevent_bytes2samples, - tevent_samples2bytes + tevent_samples2bytes, + NULL }; amci_payload_t _payload_tevent = { diff --git a/core/AmPrecodedFile.cpp b/core/AmPrecodedFile.cpp index c0f3064..84062af 100644 --- a/core/AmPrecodedFile.cpp +++ b/core/AmPrecodedFile.cpp @@ -51,7 +51,8 @@ amci_codec_t _codec_precoded = { NULL, NULL, precoded_bytes2samples, - precoded_samples2bytes + precoded_samples2bytes, + NULL }; void AmPrecodedFile::initPlugin() { _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
