-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.gvi
1485 lines (1485 loc) · 119 KB
/
test.gvi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<SourceFile Checksum="D4287B072035B60A4301C2767443C08192B916F9EC5B383EA881C31DD2EDD32278D6E08957547E42839D30D66333FE275DE322DBA28F59B88A02C8A5AE433310" Timestamp="1D97A1FF6A59581" xmlns="http://www.ni.com/PlatformFramework">
<SourceModelFeatureSet>
<ParsableNamespace AssemblyFileVersion="8.4.0.49575" FeatureSetName="LabVIEW Controls" Name="http://www.ni.com/Controls.LabVIEW.Design" OldestCompatibleVersion="8.1.0.49152" Version="8.1.0.49152" />
<ParsableNamespace AssemblyFileVersion="8.4.0.49575" FeatureSetName="LabVIEW Virtual Instrument" Name="http://www.ni.com/LabVIEW.VI" OldestCompatibleVersion="8.1.0.49152" Version="8.1.0.49152" />
<ParsableNamespace AssemblyFileVersion="8.4.0.49575" FeatureSetName="Common language components" Name="http://www.ni.com/MocCommon" OldestCompatibleVersion="8.1.0.49152" Version="8.1.0.49152" />
<ParsableNamespace AssemblyFileVersion="8.4.0.49575" FeatureSetName="Editor" Name="http://www.ni.com/PanelCommon" OldestCompatibleVersion="6.1.0.0" Version="6.1.0.49152" />
<ParsableNamespace AssemblyFileVersion="8.4.0.49575" FeatureSetName="Editor" Name="http://www.ni.com/PlatformFramework" OldestCompatibleVersion="8.1.0.49152" Version="8.1.0.49152" />
<ApplicationVersionInfo Build="8.4.0.49575" Name="LabVIEW NXG" Version="5.1.0" />
</SourceModelFeatureSet>
<VirtualInstrument Id="1" xmlns="http://www.ni.com/LabVIEW.VI">
<Icon Id="2" ListViewIconCrop="0 0 40 40" xmlns="http://www.ni.com/PlatformFramework">
<IconPanel Height="[float]40" Id="3" Left="[float]0" MinHeight="[float]0" MinWidth="[float]0" PanelSizeMode="Resize" Top="[float]0" Width="[float]40">
<IconTemplate ClipMargin="[SMThickness]3,3,3,3" Height="[float]40" Id="4" Left="[float]0" TemplateName="[string]Gray" Top="[float]0" Width="[float]40">
<Rectangle Fill="[SMSolidColorBrush]#ff727272" Id="5" IsHitTestVisible="[bool]False" Left="[float]0" MinHeight="[float]1" MinWidth="[float]1" RadiusX="[float]4" RadiusY="[float]4" Top="[float]0" />
<Rectangle Fill="[SMSolidColorBrush]#ffe5e5e5" Id="6" IsHitTestVisible="[bool]False" Left="[float]0" Margin="[SMThickness]1,1,1,1" MinHeight="[float]1" MinWidth="[float]1" RadiusX="[float]2.5" RadiusY="[float]2.5" Stroke="[SMSolidColorBrush]#fff2f2f2" Top="[float]0" />
<FileNameText Attached="[bool]True" Id="7" Left="[float]0" Margin="[SMThickness]2,2,2,2" SizeMode="[TextModelSizeMode]AutoFont" Text="[string]test" TextAlignment="[TextAlignment]Center" TextWrapping="[TextWrapping]Wrap" Top="[float]0" VerticalScrollBarVisibility="[ScrollBarVisibility]Hidden">
<FontSetting FontFamily="Segoe UI" FontSize="11.25" Id="2c6bfaedf8bf467b885a6f407badfb09" />
</FileNameText>
</IconTemplate>
</IconPanel>
</Icon>
<ConnectorPane Height="40" Id="9" ListViewHeight="40" ListViewWidth="150" Width="40" xmlns="http://www.ni.com/PlatformFramework">
<ConnectorPaneTerminal />
<ConnectorPaneTerminal Hotspot="0 15" />
<ConnectorPaneTerminal Hotspot="0 25" />
<ConnectorPaneTerminal Hotspot="0 35" />
<ConnectorPaneTerminal Hotspot="15 0" />
<ConnectorPaneTerminal Hotspot="25 0" />
<ConnectorPaneTerminal Hotspot="40 5" />
<ConnectorPaneTerminal Hotspot="40 15" />
<ConnectorPaneTerminal Hotspot="40 25" />
<ConnectorPaneTerminal Hotspot="40 35" />
<ConnectorPaneTerminal Hotspot="15 40" />
<ConnectorPaneTerminal Hotspot="25 40" />
</ConnectorPane>
<DiagramUnplacedItems Id="10" xmlns="http://www.ni.com/MocCommon" />
<FrontPanelUnplacedItems Id="11" Left="[float]0" MinHeight="[float]0" MinWidth="[float]0" PanelSizeMode="Fixed" Top="[float]0">
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="79490008bbfd45859a41c13c0d06cc37" Interval="[int]1" IsReadOnly="[bool]True" Left="[float]0" Name="[string]return" TabIndex="[int]0" Top="[float]0" Value="{DataItemBinding Id=bea6af9cbe4274bac352cf4b6cb0a2}" ValueFormatter="[string]DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]Int32" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<ArrayViewer ArrayElement="[UIModel]51787ab4439545738e7dd5217a7b9f5e" BaseName="[string]Array" Columns="[int]1" Dimensions="[int]1" Height="[float]126" Id="32f23b91fb9448fdb6f7d54e68ddd4bd" IndexVisibility="[Visibility]Collapsed" IsFixedSize="[bool]False" Left="[float]0" Name="[string]data out" Orientation="[SMOrientation]Vertical" Rows="[int]4" TabIndex="[int]1" Top="[float]20" Value="{DataItemBinding Id=c3dbcb99395a400489bc9724da6dbc26}" VerticalScrollBarVisibility="[ScrollBarVisibility]Visible" Width="[float]111" xmlns="http://www.ni.com/PanelCommon">
<p.DefaultElementValue>0</p.DefaultElementValue>
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="51787ab4439545738e7dd5217a7b9f5e" Interval="[byte]1" IsReadOnly="[bool]True" ValueFormatter="[string]DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]UInt8" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
</ArrayViewer>
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="e0c5534df30f47cba71e0864e9dc36b1" Interval="[int]1" IsReadOnly="[bool]True" Left="[float]0" Name="[string]return_3" TabIndex="[int]2" Top="[float]0" Value="{DataItemBinding Id=ad66b8ce98b7457786d7981b8c13dda6}" ValueFormatter="[string]DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]Int32" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="4a3b72a2010b404b8b73e53fdd925afa" Interval="[int]1" IsReadOnly="[bool]True" Left="[float]0" Name="[string]return_5" TabIndex="[int]3" Top="[float]0" Value="{DataItemBinding Id=6e057975d93f4ce99c9fe2d08951fcaa}" ValueFormatter="[string]DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]Int32" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<ArrayViewer ArrayElement="[UIModel]82397fbcd6304e70b627a410aada5c00" BaseName="[string]Array" Columns="[int]1" Dimensions="[int]1" Height="[float]126" Id="cb047cf8d75a4da0a20b13b36aa09bcb" IndexVisibility="[Visibility]Collapsed" IsFixedSize="[bool]False" Left="[float]0" Name="[string]pcm out" Orientation="[SMOrientation]Vertical" Rows="[int]4" TabIndex="[int]4" Top="[float]20" Value="{DataItemBinding Id=b1de81ed0dd4481181d4aecceba00829}" VerticalScrollBarVisibility="[ScrollBarVisibility]Visible" Width="[float]111" xmlns="http://www.ni.com/PanelCommon">
<p.DefaultElementValue>0x0</p.DefaultElementValue>
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="82397fbcd6304e70b627a410aada5c00" Interval="[float]1" IsReadOnly="[bool]True" ValueFormatter="[string]DisplayFormat=Automatic:Digits=6:DigitDisplayType=SignificantDigits:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]Single" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
</ArrayViewer>
<Graph BaseName="[string]Graph" BorderThickness="[SMThickness]1,1,1,1" DataSource="{DataItemBinding Id=db8d7aef13ba41f7baaca404a8b86039}" DataSourceType="[Type]Wfm(Single)" Height="[float]296" Id="8cdc7714ebe6435093cd0386d90388f1" Left="[float]0" MetadataAlwaysOverridesPlotNames="[bool]True" Name="[string]output waveform" PreferIndexData="[bool]False" RenderMode="[RenderMode]Hardware" SuppressScaleLayout="[bool]False" TabIndex="[int]5" Top="[float]0" Width="[float]392" xmlns="http://www.ni.com/Controls.LabVIEW.Design">
<PlotRenderer Id="2af8631468e4473c9d89191a633d0eb2" LineStroke="[SMSolidColorBrush]#ff962428" />
<PlotRenderer Id="bd8e02a8ec9466698365622aacd5230" LineStroke="[SMSolidColorBrush]#ff008ee4" />
<PlotRenderer Id="e1142e83e4ff4a18975af81d7b67855a" LineStroke="[SMSolidColorBrush]#ffe2b683" />
<PlotRenderer Id="16676f8ba4924e169aba2e8988668e2a" LineStroke="[SMSolidColorBrush]#ffb7ac1f" />
<PlotRenderer Id="f0cb8404d9cd43f5969b10c3a0115f87" LineStroke="[SMSolidColorBrush]#ffaedcef" />
<PlotRenderer Id="72efd501cecc41f8b2fc9a23044bd005" LineStroke="[SMSolidColorBrush]#ffa08bb0" />
<PlotRenderer Id="2aebba25d2834472b5c80e360754b0ae" LineStroke="[SMSolidColorBrush]#ff7f7f7f" />
<PlotRenderer Id="63bbddc32b72456aafa560d9f3c1bd33" LineStroke="[SMSolidColorBrush]#ff91685c" />
<Axis Adjuster="[RangeAdjuster]FitLoosely" Id="25c417c716fe41bfbc013869ffb2e26c" Label="[string]Time" MajorDivisions="[UIModel]9a59f09ac4104c82829c5c95bceb204a" Orientation="[SMOrientation]Horizontal" Range="[IRange]0, 100, System.Double" ValueType="[Type]Double">
<RangeLabeledDivisions Id="9a59f09ac4104c82829c5c95bceb204a">
<p.LabelPresenter Kind="LVRelativeSeconds" Format="0.######" />
</RangeLabeledDivisions>
</Axis>
<Axis Adjuster="[RangeAdjuster]FitVisibleLoosely" Id="645b5608b644ea895f37a9d948e7141" Label="[string]Amplitude" MajorDivisions="[UIModel]85fe54b70e594e10b1672acfce501a29" Orientation="[SMOrientation]Vertical" Range="[IRange]0, 10, System.Double" ValueType="[Type]Double">
<RangeLabeledDivisions Id="85fe54b70e594e10b1672acfce501a29">
<p.LabelPresenter Kind="LVRelativeSeconds" Format="G6" ShortFormat="0.000E+0" />
</RangeLabeledDivisions>
</Axis>
<Plot HorizontalScale="[UIModel]25c417c716fe41bfbc013869ffb2e26c" Id="96f558c091314566b41c03f8a55837aa" Label="[string]Plot" VerticalScale="[UIModel]645b5608b644ea895f37a9d948e7141" />
</Graph>
<PlotLegend Graph="[UIModel]8cdc7714ebe6435093cd0386d90388f1" Height="[float]28" Id="630289e88ab847bcb1e61430923744d7" Left="[float]399" Top="[float]0" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<CursorLegend DefaultCursorForeground="[SMSolidColorBrush]#ff000000" Graph="[UIModel]8cdc7714ebe6435093cd0386d90388f1" Height="[float]102" Id="195adb3b1764451085d70216f027d58c" Left="[float]5" Top="[float]325" Visible="[bool]False" Width="[float]251" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<ScaleLegend Graph="[UIModel]8cdc7714ebe6435093cd0386d90388f1" Height="[float]54" Id="98fd67ef31ed4aa3941a431e822321fa" Left="[float]399" Top="[float]194" Visible="[bool]False" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<GraphTools Graph="[UIModel]8cdc7714ebe6435093cd0386d90388f1" Id="7df5267096724f3ab068eb451e32f48e" Left="[float]5" Top="[float]303" Visible="[bool]False" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
<NumericText BaseName="[string]Numeric" Height="[float]24" Id="accb2a8560844619a71e090b49e63f8e" Interval="[int]1" IsReadOnly="[bool]True" Left="[float]0" Name="[string]return_3" TabIndex="[int]6" Top="[float]0" Value="{DataItemBinding Id=228c647bd504479ebb979351ae6e09e4}" ValueFormatter="[string]DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" ValueType="[Type]Int32" Width="[float]72" xmlns="http://www.ni.com/Controls.LabVIEW.Design" />
</FrontPanelUnplacedItems>
<BlockDiagram Id="12">
<Wire Id="c015cb81cf6e4039a3ca8d4c0485e273" Joints="N(d55a0939f42548afa26af25b836e8f4e:R0)|(115,50) h(70) v(15) N(19a67fd0f55e421898afadd01f0f5533:c0t0v)|(245,65)" xmlns="http://www.ni.com/PlatformFramework" />
<InitializeArray Bounds="245 40 40 30" Id="19a67fd0f55e421898afadd01f0f5533" Terminals="element=685f562a55ad4f9684243f3da3989afe, outArray=cee9fcda6c634d2b98158083e321f7f6, c0t0v=c015cb81cf6e4039a3ca8d4c0485e273" />
<Literal Bounds="180 40 40 15" DataType="UInt8" Id="19bcdbc5c91b41499048a51d23f1e04a" Label="c486eeb9dba04805b37cea29630fb589" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="19bcdbc5c91b41499048a51d23f1e04a" Bounds="180 22 30 15" Id="c486eeb9dba04805b37cea29630fb589" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>element</p.Text>
</NodeLabel>
<Wire Id="685f562a55ad4f9684243f3da3989afe" Joints="N(19bcdbc5c91b41499048a51d23f1e04a:Out)|(220,45) N(19a67fd0f55e421898afadd01f0f5533:element)|(245,45)" xmlns="http://www.ni.com/PlatformFramework" />
<MethodCall Bounds="75 45 40 40" Id="d55a0939f42548afa26af25b836e8f4e" ResolveFailedHint="Opus Encode State Size" Signature="@dd8c4c8b30244cb0915f00dddcdf4081" Target="opus-lv.sli::Opus Encode State Size" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L3" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R3" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Error" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 35" Id="R3" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<MethodCall Bounds="-365 430 40 40" Id="719a0e801dc34387acf0a41a30e31d34" ResolveFailedHint="Sound File Read Simple.gvi, Package: (LabVIEW NXG G Standard Library Files, Version: 5.1.0)" Signature="@e5606a63445e4d9183384d841bdddc34" Target="NI::G Core::Sound::Files::Sound File Read Simple.gvi" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L0" Desc="sound file" />
<Parameter Id="L1" Desc="position mode" />
<Parameter Id="L2" Desc="position offset" />
<Parameter Id="L3" Desc="error in" />
<Parameter Id="T0" Desc="number of samples/ch" />
<Parameter Id="R1" Desc="data" />
<Parameter Id="R2" Desc="offset" />
<Parameter Id="R3" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Path" Direction="Input" Id="L0" Usage="Required" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="@4a683b97df1c4835b0d16dab7f9efb73" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="15 0" Id="T0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Wfm(Double)[]" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 25" Id="R2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 35" Id="R3" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Literal Bounds="-605 430 210 15" DataType="Path" Id="e215a4b4b444407c9c55ec210affb4a2" Label="f1290a55347d4305a9617c8faebaf030" xmlns="http://www.ni.com/MocCommon">
<p.Data>
<Path a="1">
<pE>C</pE>
<pE>Users</pE>
<pE>jk</pE>
<pE>Desktop</pE>
<pE>test.wav</pE>
</Path>
</p.Data>
<PathBehavior />
</Literal>
<NodeLabel AttachedTo="e215a4b4b444407c9c55ec210affb4a2" Bounds="-605 412 30 15" Id="f1290a55347d4305a9617c8faebaf030" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>sound file</p.Text>
</NodeLabel>
<Wire Id="7c1928bbabf4d9fa5e2bbef26e18bc3" Joints="N(e215a4b4b444407c9c55ec210affb4a2:Out)|(-395,435) N(719a0e801dc34387acf0a41a30e31d34:L0)|(-365,435)" xmlns="http://www.ni.com/PlatformFramework" />
<ArrayIndex Bounds="-235 500 40 30" Id="c2a2323380c04f3ab0d61a4e4e707857" Terminals="array=8448c652ef1d4022898d143d3d7bd966, c0t0v=dbd420a29f7047b4813116e31d3f738d, c0out=49ce6fa1075043bd99c779a4a9f23bb6" />
<Wire Id="8448c652ef1d4022898d143d3d7bd966" Joints="N(719a0e801dc34387acf0a41a30e31d34:R1)|(-325,445) h(79) v(60) N(c2a2323380c04f3ab0d61a4e4e707857:array)|(-235,505)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="-305 520 40 15" DataType="Int32" Id="5969b6a152544091870ef1055985da35" Label="c8c8ca09b1e148dc8e4ae33c9eea4a21" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="5969b6a152544091870ef1055985da35" Bounds="-305 502 30 15" Id="c8c8ca09b1e148dc8e4ae33c9eea4a21" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>index</p.Text>
</NodeLabel>
<Wire Id="dbd420a29f7047b4813116e31d3f738d" Joints="N(5969b6a152544091870ef1055985da35:Out)|(-265,525) N(c2a2323380c04f3ab0d61a4e4e707857:c0t0v)|(-235,525)" xmlns="http://www.ni.com/PlatformFramework" />
<PropertyNode Bounds="-80 245 88 80" HasErrorTerminals="False" Id="2623587b74ed4d259a2a94270c551e23" InstanceDataType="Wfm(Double)" xmlns="http://www.ni.com/MocCommon">
<PropertyItemTerminal DataType="Double[]" Hotspot="88 15" Id="c0t0v" Path="Y" PathElementMemberKinds="Field" Usage="Optional" />
<PropertyItemTerminal DataType="Timestamp" Hotspot="88 30" Id="c1t0v" Path="t0" PathElementMemberKinds="Field" Usage="Optional" />
<PropertyItemTerminal DataType="Double" Hotspot="88 45" Id="c2t0v" Path="dt" PathElementMemberKinds="Field" Usage="Optional" />
<PropertyItemTerminal DataType="@bd2232353db34e3ebe062acdcac878ce" Hotspot="88 60" Id="c3t0v" Path="attributes" PathElementMemberKinds="Field" Usage="Optional" />
</PropertyNode>
<Wire Id="49ce6fa1075043bd99c779a4a9f23bb6" Joints="N(c2a2323380c04f3ab0d61a4e4e707857:c0out)|(-195,525) h(5) v(-275) N(2623587b74ed4d259a2a94270c551e23:instance in)|(-80,250)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="-410 385 55 15" DataType="Int32" Id="e7082dc8445745878758c8ffc9fd2c2b" Label="f8ce89e4518441bc887a4b7c1744af8a" xmlns="http://www.ni.com/MocCommon">
<p.Data>96000</p.Data>
<NumericBehavior Interpretation="Exact" RadixVisibility="Hidden" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="e7082dc8445745878758c8ffc9fd2c2b" Bounds="-410 367 30 15" Id="f8ce89e4518441bc887a4b7c1744af8a" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>number of samples/ch</p.Text>
</NodeLabel>
<Literal Bounds="-450 450 55 15" DataType="Int32" Id="d6a5942ba22748fe80fc0c52836a9644" Label="363bb47211014368b2e2589899b1072e" xmlns="http://www.ni.com/MocCommon">
<p.Data>10000</p.Data>
<NumericBehavior Interpretation="Exact" RadixVisibility="Hidden" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="d6a5942ba22748fe80fc0c52836a9644" Bounds="-450 432 30 15" Id="363bb47211014368b2e2589899b1072e" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>position offset</p.Text>
</NodeLabel>
<Wire Id="b275e96fb4634b92afc4b6439c97c7e7" Joints="N(d6a5942ba22748fe80fc0c52836a9644:Out)|(-395,455) N(719a0e801dc34387acf0a41a30e31d34:L2)|(-365,455)" xmlns="http://www.ni.com/PlatformFramework" />
<DisableStructure Bounds="-420 1200 1370 580" Id="40c11165648a4d44a72a17382f4b377e" Selected="b7d15c1c58fd4ee4ae0b77c7ae823d21" UserSelectorBounds="632 0 107 17">
<DisableStructure.DisableDiagram Bounds="5 5 1360 570" Id="79b7eb9cfb90478a86b04aab9ad3dcbe" Pattern="Enabled" />
<DisableStructure.DisableDiagram Bounds="5 5 1360 570" Id="b7d15c1c58fd4ee4ae0b77c7ae823d21" Pattern="Disabled">
<WhileLoop Bounds="119 85 1091 350" DiagramId="f06373aec4e640b892236c66bbad5c76" Id="6b02045f24c3444296b90f15904c392f">
<LoopIteration Bounds="5 320 15 15" Id="6bb3010bc5854c7eb059699a7b850ffc" />
<LoopCondition Bounds="730 320 15 15" Id="3da43f2e5f0247b5ae6162912fdb5de1" />
<Literal Bounds="676 320 25 15" DataType="Boolean" Id="288b01a142a445148b89ef68c0205cd1" Label="9abb75001d364adb9e9959f4a9b20625" xmlns="http://www.ni.com/MocCommon">
<p.Data>False</p.Data>
<BooleanBehavior />
</Literal>
<NodeLabel AttachedTo="288b01a142a445148b89ef68c0205cd1" Bounds="676 302 30 15" Id="9abb75001d364adb9e9959f4a9b20625" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>stop</p.Text>
</NodeLabel>
<Wire Id="5c6b124b45f844889c293f0710641c06" Joints="N(288b01a142a445148b89ef68c0205cd1:Out)|(701,325) N(3da43f2e5f0247b5ae6162912fdb5de1:Input)|(730,325)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="31 70 40 15" DataType="Double" Id="a1bde09e6466421eb3ed6830286d1cad" Label="8dea31ca821c4671b04d8541572bd9a6" xmlns="http://www.ni.com/MocCommon">
<p.Data>0x3FC999999999999A</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=6:DigitDisplayType=SignificantDigits:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Wire Id="8196d0b295c94c278fd97e8a4b867706" Joints="N(a1bde09e6466421eb3ed6830286d1cad:Out)|(71,75) N(bfcec94e1a6d4b68a88573c72bf36953:L0)|(101,75)" xmlns="http://www.ni.com/PlatformFramework" />
<MethodCall Bounds="616 100 40 60" Id="59d4d6a7fcd540baaee516a286cece8e" ResolveFailedHint="audio_write" Signature="@e583d66ff1c84e1aa5f22bbd8c20fbab" Target="audio_write.sli::audio_write" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="dev" />
<Parameter Id="L2" Desc="sr" />
<Parameter Id="L3" Desc="pcm" />
<Parameter Id="L4" Desc="samples in" />
<Parameter Id="L5" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R4" Desc="samples out" />
<Parameter Id="R5" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Int32" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Single[]" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 55" Id="L5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 45" Id="R4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 55" Id="R5" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Literal Bounds="471 85 40 15" DataType="Int32" Id="f5ceebbdd927496d968e8faff0abd578" Label="a6a776f5e99949f38295d47671f1696f" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Wire Id="8aa171647e894801af3114ddf831289e" Joints="N(f5ceebbdd927496d968e8faff0abd578:Out)|(511,90) h(65) v(25) N(59d4d6a7fcd540baaee516a286cece8e:L1)|(616,115)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="471 110 55 15" DataType="Int32" Id="e7a003625b134378965c14ead8672e4a" Label="2cfc171274a94e75b14fc989fa81383b" xmlns="http://www.ni.com/MocCommon">
<p.Data>44100</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Wire Id="42caf2db9cd0461786123bc7be120375" Joints="N(e7a003625b134378965c14ead8672e4a:Out)|(526,115) h(25) v(10) N(59d4d6a7fcd540baaee516a286cece8e:L2)|(616,125)" xmlns="http://www.ni.com/PlatformFramework" />
<ToSinglePrecisionFloat Bounds="391 105 30 10" Id="bcc4cda8068245009640f9ddbff9c03a" />
<Wire Id="80e5e2c07367431c843eadc7efdf24d8" Joints="N(bcc4cda8068245009640f9ddbff9c03a:single precision float)|(421,110) h(45) v(25) N(59d4d6a7fcd540baaee516a286cece8e:L3)|(616,135)" xmlns="http://www.ni.com/PlatformFramework" />
<DataAccessor Bounds="676 100 40 15" DataItem="ad66b8ce98b7457786d7981b8c13dda6" Id="f1546b4ed12842478b39abbd6fdb53c0" Label="ef69f8cfe5994e42b5e6b0387122819e" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Int32" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<Wire Id="caf0847900944011ab3541bbc025d078" Joints="N(59d4d6a7fcd540baaee516a286cece8e:R0)|(656,105) N(f1546b4ed12842478b39abbd6fdb53c0:Value)|(679,105)" xmlns="http://www.ni.com/PlatformFramework" />
<NodeLabel AttachedTo="a1bde09e6466421eb3ed6830286d1cad" Bounds="31 52 30 15" Id="8dea31ca821c4671b04d8541572bd9a6" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>standard deviation</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="f5ceebbdd927496d968e8faff0abd578" Bounds="471 67 30 15" Id="a6a776f5e99949f38295d47671f1696f" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>dev</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="e7a003625b134378965c14ead8672e4a" Bounds="471 92 30 15" Id="2cfc171274a94e75b14fc989fa81383b" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>sr</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="f1546b4ed12842478b39abbd6fdb53c0" Bounds="721 100 49 14" Id="ef69f8cfe5994e42b5e6b0387122819e" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>return_3</p.Text>
</NodeLabel>
<Literal Bounds="51 165 55 15" DataType="Int32" Id="e99e5521f58c4ace96102277db6a871a" Label="d38d6ec16795498aa3c67ba6a38d7dac" xmlns="http://www.ni.com/MocCommon">
<p.Data>44100</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="e99e5521f58c4ace96102277db6a871a" Bounds="51 147 30 15" Id="d38d6ec16795498aa3c67ba6a38d7dac" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>samples</p.Text>
</NodeLabel>
<MethodCall Bounds="101 70 50 50" Id="bfcec94e1a6d4b68a88573c72bf36953" ResolveFailedHint="Gaussian White Noise.gvi, Package: (LabVIEW NXG Analysis Basic Files, Version: 5.1.0)" Signature="@4c87b07a7e1d424a9d57f0a155a86623" Target="NI::Analysis::Generation::Gaussian White Noise.gvi" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="B1" Desc="samples" />
<Parameter Id="L0" Desc="standard deviation" />
<Parameter Id="L2" Desc="state in" />
<Parameter Id="L3" Desc="seed" />
<Parameter Id="L4" Desc="error in" />
<Parameter Id="T0" Desc="reset" />
<Parameter Id="T1" Desc="offset" />
<Parameter Id="R0" Desc="Gaussian white noise" />
<Parameter Id="R2" Desc="state out" />
<Parameter Id="R4" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Int32" Direction="Input" Hotspot="25 50" Id="B1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Double" Direction="Input" Id="L0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="@50c5984651ad4a32bded95f0cf4ee775" Direction="Input" Hotspot="0 25" Id="L2" Usage="Optional" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Boolean" Direction="Input" Hotspot="15 0" Id="T0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Double" Direction="Input" Hotspot="25 0" Id="T1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Double[]" Direction="Output" Hotspot="50 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="@50c5984651ad4a32bded95f0cf4ee775" Direction="Output" Hotspot="50 25" Id="R2" Usage="Optional" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="50 45" Id="R4" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Wire Id="33875d0b16de4520942f5a0fc4266905" Joints="N(bfcec94e1a6d4b68a88573c72bf36953:R0)|(151,75) h(11) v(35) N(bcc4cda8068245009640f9ddbff9c03a:number)|(394,110)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="d6ff278e3f3248409548275f04b0eb43" Joints="N(e99e5521f58c4ace96102277db6a871a:Out)|(106,170) h(20) N(bfcec94e1a6d4b68a88573c72bf36953:B1)|(126,120)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="541 140 45 15" DataType="Int32" Id="10191acd616402cbd205166ac05b8f3" Label="d7080db658d24340a84ea01b73256c4d" xmlns="http://www.ni.com/MocCommon">
<p.Data>1000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<NodeLabel AttachedTo="10191acd616402cbd205166ac05b8f3" Bounds="541 122 30 15" Id="d7080db658d24340a84ea01b73256c4d" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>samples in</p.Text>
</NodeLabel>
<Wire Id="edc96e052f2147ce9540df0728d1052c" Joints="N(10191acd616402cbd205166ac05b8f3:Out)|(586,145) N(59d4d6a7fcd540baaee516a286cece8e:L4)|(616,145)" xmlns="http://www.ni.com/PlatformFramework" />
</WhileLoop>
</DisableStructure.DisableDiagram>
</DisableStructure>
<Literal Bounds="300 50 55 15" DataType="Int32" Id="167bc2078873409eaf04df80eca79fc3" Label="7753f2dad98e4af0b8dfda6e491d7ded" xmlns="http://www.ni.com/MocCommon">
<p.Data>48000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<InitializeArray Bounds="565 340 40 30" Id="66c9c22bb87d4fd2974f1a0b0e76687a" Terminals="element=be0034c0a022408d85d7885345990323, outArray=8fc7947a062a41b29f9735d7a7e5229f, c0t0v=d3bb7f71ae1b415cb3674634d887bc50" />
<Literal Bounds="505 340 40 15" DataType="UInt8" Id="434b51289a9e4a90976ebe1323f0e35f" Label="d23de978a623430ea54b7f14d7c96226" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<ToSinglePrecisionFloat Bounds="55 150 30 10" Id="e139500623c3413ca0d2b9a6cc947bd9" />
<DataAccessor Bounds="810 75 40 15" DataItem="bea6af9cbe4274bac352cf4b6cb0a2" Id="a45d046cbe944c6bb019a54653d83424" Label="b11dee0841e94939a555cb1d7934f496" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Int32" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<Literal Bounds="300 70 55 15" DataType="Int32" Id="57133d341ff4465db3b9752f06f217a7" Label="55d72992f95b4a0f9c6fbdf91c01b63a" xmlns="http://www.ni.com/MocCommon">
<p.Data>12000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<DataAccessor Bounds="865 135 40 15" DataItem="c3dbcb99395a400489bc9724da6dbc26" Id="293411722e5940d2812e0dae26ca09c9" Label="2863d627a2d54c5091d88f46e767a56c" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<MethodCall Bounds="645 85 40 90" Id="399f0312a8af42a3aea315dc686f81c8" ResolveFailedHint="Opus Encode" Signature="@6707ce2a151f4d3fb9cb5fdc5b487f4b" Target="opus-lv.sli::Opus Encode" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="state in" />
<Parameter Id="L2" Desc="pcm" />
<Parameter Id="L3" Desc="pcm_size" />
<Parameter Id="L4" Desc="frame_size" />
<Parameter Id="L5" Desc="data in" />
<Parameter Id="L6" Desc="max_data_bytes" />
<Parameter Id="L8" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R1" Desc="state out" />
<Parameter Id="R5" Desc="data out" />
<Parameter Id="R8" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Single[]" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 55" Id="L5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 65" Id="L6" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 85" Id="L8" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Output" Hotspot="40 55" Id="R5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 85" Id="R8" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<MethodCall Bounds="405 30 40 50" Id="39693205919b4154bb752fe5f8b4a285" ResolveFailedHint="Opus Encode Init" Signature="@7d88648779be47aabe858f6655d2a5f6" Target="opus-lv.sli::Opus Encode Init" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="state in" />
<Parameter Id="L2" Desc="samplerate" />
<Parameter Id="L3" Desc="bitrate" />
<Parameter Id="L4" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R1" Desc="state out" />
<Parameter Id="R4" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 45" Id="R4" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Divide Bounds="355 375 30 30" Id="3c09dd5cbd3c4e45855ffff42a4e6a50" />
<Literal Bounds="300 395 40 15" DataType="Double" Id="1a8a2f7174642028d26ebb8f173f9c4" Label="e5b427c1991940098acae1d68dbfb257" xmlns="http://www.ni.com/MocCommon">
<p.Data>0x4020000000000000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=6:DigitDisplayType=SignificantDigits:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<ToSigned32BitInteger Bounds="470 365 30 10" Id="7fd5bcfcb74d446c87f97c2d9283549b" />
<NodeLabel AttachedTo="167bc2078873409eaf04df80eca79fc3" Bounds="300 32 30 15" Id="7753f2dad98e4af0b8dfda6e491d7ded" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>fs</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="434b51289a9e4a90976ebe1323f0e35f" Bounds="505 322 30 15" Id="d23de978a623430ea54b7f14d7c96226" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>element</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="a45d046cbe944c6bb019a54653d83424" Bounds="855 75 35 14" Id="b11dee0841e94939a555cb1d7934f496" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>return</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="57133d341ff4465db3b9752f06f217a7" Bounds="300 52 30 15" Id="55d72992f95b4a0f9c6fbdf91c01b63a" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>bitrate</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="293411722e5940d2812e0dae26ca09c9" Bounds="910 135 47 14" Id="2863d627a2d54c5091d88f46e767a56c" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>data out</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="1a8a2f7174642028d26ebb8f173f9c4" Bounds="300 377 30 15" Id="e5b427c1991940098acae1d68dbfb257" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>y</p.Text>
</NodeLabel>
<Wire Id="cee9fcda6c634d2b98158083e321f7f6" Joints="N(19a67fd0f55e421898afadd01f0f5533:outArray)|(285,45) h(5) v(-10) h(18) v(10) N(39693205919b4154bb752fe5f8b4a285:L1)|(405,45)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="966c2c21d6e74be29cff5350b8759e61" Joints="N(167bc2078873409eaf04df80eca79fc3:Out)|(355,55) h(20) B(1) N(39693205919b4154bb752fe5f8b4a285:L2)|(405,55) B(1) v(55) N(b874091284ac4a9c9b03a9085e2355bb:L0)|(405,110)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="be0034c0a022408d85d7885345990323" Joints="N(434b51289a9e4a90976ebe1323f0e35f:Out)|(545,345) N(66c9c22bb87d4fd2974f1a0b0e76687a:element)|(565,345)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="8fc7947a062a41b29f9735d7a7e5229f" Joints="N(66c9c22bb87d4fd2974f1a0b0e76687a:outArray)|(605,345) h(5) v(-10) h(-60) v(-190) h(85) v(-5) N(399f0312a8af42a3aea315dc686f81c8:L5)|(645,140)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="d3bb7f71ae1b415cb3674634d887bc50" Joints="N(7fd5bcfcb74d446c87f97c2d9283549b:32bit integer)|(500,370) h(20) v(-5) B(2) N(66c9c22bb87d4fd2974f1a0b0e76687a:c0t0v)|(565,365) B(2) v(-205) h(120) v(-10) N(399f0312a8af42a3aea315dc686f81c8:L6)|(645,150)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="b65ae84ae50148d68ea2099fd810d14f" Joints="N(e139500623c3413ca0d2b9a6cc947bd9:single precision float)|(85,155) h(535) v(-45) N(399f0312a8af42a3aea315dc686f81c8:L2)|(645,110)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="8cdb1d4108404595996e58d585a6eee4" Joints="N(57133d341ff4465db3b9752f06f217a7:Out)|(355,75) h(10) B(1) h(20) v(-10) N(39693205919b4154bb752fe5f8b4a285:L3)|(405,65) B(1) v(45) N(b874091284ac4a9c9b03a9085e2355bb:L1)|(405,120)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="19402a7d74414f238a6da448dfdcad80" Joints="N(39693205919b4154bb752fe5f8b4a285:R1)|(445,45) h(169) v(55) N(399f0312a8af42a3aea315dc686f81c8:L1)|(645,100)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="3b04e62307824d57b2522c64f1f85042" Joints="N(3c09dd5cbd3c4e45855ffff42a4e6a50:x/y)|(385,390) h(6) v(-20) N(7fd5bcfcb74d446c87f97c2d9283549b:number)|(473,370)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="d3b381789f374ec689213a46660cd358" Joints="N(1a8a2f7174642028d26ebb8f173f9c4:Out)|(340,400) h(10) v(-5) N(3c09dd5cbd3c4e45855ffff42a4e6a50:y)|(355,395)" xmlns="http://www.ni.com/PlatformFramework" />
<MethodCall Bounds="45 620 40 40" Id="8a90165db9104dfc9094f8a2c5fccf90" ResolveFailedHint="Opuis Decode State Size" Signature="@14af44a29caa4a31b602d748d4b75f61" Target="opus-lv.sli::Opuis Decode State Size" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L3" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R3" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Error" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 35" Id="R3" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<InitializeArray Bounds="65 605 40 30" Id="bf98ef98d3dd49c99b308f414b12bab7" Terminals="element=8b9e32e1cf9b486ea577100a521f1615, outArray=7ed7c4f398e647eda0d79b15042b5a64, c0t0v=d64887f469e548daa008ef1424dca47e" />
<Literal Bounds="85 605 40 15" DataType="UInt8" Id="ec0212b779c1404f8c85d410e82e01a5" Label="830e1a74d5ac43a1a47f5f7e5966f897" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Literal Bounds="75 680 55 15" DataType="Int32" Id="8323515e0d874d5fb42fd7b8b97486e3" Label="65be7f36fd97497f88ae0767d7d77bbc" xmlns="http://www.ni.com/MocCommon">
<p.Data>48000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<MethodCall Bounds="230 615 40 40" Id="c6d2443175c14b21a768d5b1cbaffc20" ResolveFailedHint="Opus Decode Init" Signature="@583b62dc09664dc59d300e56443f420e" Target="opus-lv.sli::Opus Decode Init" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="state in" />
<Parameter Id="L2" Desc="samplerate" />
<Parameter Id="L3" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R1" Desc="state out" />
<Parameter Id="R3" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 35" Id="R3" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<InitializeArray Bounds="455 760 40 30" Id="64b7213eafc74263bd520781ecb23cf0" Terminals="element=ba18e0e3fa0541a987865ff406c23e6a, outArray=75c0f60264c04b6bb0b98a67347231aa, c0t0v=6745f1e578104ad0a910c3d73dfd9f06" />
<Literal Bounds="390 760 40 15" DataType="Double" Id="c71b1543b8974b41a7c58c35e6964d94" Label="3f66dd8b1fca417e82b54f6453369db5" xmlns="http://www.ni.com/MocCommon">
<p.Data>0x0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<ToSinglePrecisionFloat Bounds="525 730 30 10" Id="17be60c772d6454e812e14cd4b18c000" />
<BuildWaveformNode Bounds="1050 930 40 40" Id="3b3aaab102104bebb577bfde455c1a95" />
<MethodCall Bounds="880 620 40 90" Id="f33c618f3852442b84c12dd79424eb15" ResolveFailedHint="Opus Decode" Signature="@72f50d413c944c16bbbcca93dab12897" Target="opus-lv.sli::Opus Decode" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="state in" />
<Parameter Id="L2" Desc="data" />
<Parameter Id="L3" Desc="data_bytes" />
<Parameter Id="L4" Desc="bytes_per_frame" />
<Parameter Id="L5" Desc="pcm in" />
<Parameter Id="L6" Desc="pcm_samples" />
<Parameter Id="L7" Desc="fec" />
<Parameter Id="L8" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R1" Desc="state out" />
<Parameter Id="R5" Desc="pcm out" />
<Parameter Id="R8" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Single[]" Direction="Input" Hotspot="0 55" Id="L5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 65" Id="L6" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 75" Id="L7" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 85" Id="L8" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="UInt8[]" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Single[]" Direction="Output" Hotspot="40 55" Id="R5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 85" Id="R8" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<DataAccessor Bounds="1080 620 40 15" DataItem="6e057975d93f4ce99c9fe2d08951fcaa" Id="c91e3d77a1d240759b0fc43b1e9fb7ee" Label="c781582a25924512a388adb6f1f10581" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Int32" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<DataAccessor Bounds="1170 675 40 15" DataItem="b1de81ed0dd4481181d4aecceba00829" Id="1f0d66d154674a1d94cabf1bc46cf290" Label="44a507f97a434c6cb7b900991b8100bd" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Single[]" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<NodeLabel AttachedTo="ec0212b779c1404f8c85d410e82e01a5" Bounds="85 587 30 15" Id="830e1a74d5ac43a1a47f5f7e5966f897" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>element</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="8323515e0d874d5fb42fd7b8b97486e3" Bounds="75 662 30 15" Id="65be7f36fd97497f88ae0767d7d77bbc" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>fs</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="c71b1543b8974b41a7c58c35e6964d94" Bounds="390 742 30 15" Id="3f66dd8b1fca417e82b54f6453369db5" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>element</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="c91e3d77a1d240759b0fc43b1e9fb7ee" Bounds="1125 620 49 14" Id="c781582a25924512a388adb6f1f10581" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>return_5</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="1f0d66d154674a1d94cabf1bc46cf290" Bounds="1215 675 46 14" Id="44a507f97a434c6cb7b900991b8100bd" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>pcm out</p.Text>
</NodeLabel>
<Wire Id="ebfdc1ec9e2e4c14a69578cb25973ded" Joints="N(2623587b74ed4d259a2a94270c551e23:c2t0v)|(8,290) h(177) v(655) N(3b3aaab102104bebb577bfde455c1a95:dt)|(1050,945)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="e3d68032bc814145bbe7c5d4e649169f" Joints="N(399f0312a8af42a3aea315dc686f81c8:R0)|(685,90) h(5) B(1) v(-10) N(a45d046cbe944c6bb019a54653d83424:Value)|(813,80) B(1) v(90) h(-5) v(230) h(150) v(245) N(f33c618f3852442b84c12dd79424eb15:L3)|(880,655)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="692a9b827814ef6b8f5a535c6906fcf" Joints="N(399f0312a8af42a3aea315dc686f81c8:R5)|(685,140) h(165) B(1) N(293411722e5940d2812e0dae26ca09c9:Value)|(868,140) B(1) v(505) N(f33c618f3852442b84c12dd79424eb15:L2)|(880,645)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="d64887f469e548daa008ef1424dca47e" Joints="N(8a90165db9104dfc9094f8a2c5fccf90:R0)|(85,625) h(5) v(5) N(bf98ef98d3dd49c99b308f414b12bab7:c0t0v)|(65,630)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="8b9e32e1cf9b486ea577100a521f1615" Joints="N(ec0212b779c1404f8c85d410e82e01a5:Out)|(125,610) h(65) v(-10) h(-130) v(10) N(bf98ef98d3dd49c99b308f414b12bab7:element)|(65,610)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="7ed7c4f398e647eda0d79b15042b5a64" Joints="N(bf98ef98d3dd49c99b308f414b12bab7:outArray)|(105,610) h(69) v(20) N(c6d2443175c14b21a768d5b1cbaffc20:L1)|(230,630)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="f4a513bdf2cf4e30ac83886e06506fdc" Joints="N(8323515e0d874d5fb42fd7b8b97486e3:Out)|(130,685) h(65) v(-45) N(c6d2443175c14b21a768d5b1cbaffc20:L2)|(230,640)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="c0b25f057afa4d189bfe29cb4d8964e4" Joints="N(c6d2443175c14b21a768d5b1cbaffc20:R1)|(270,630) h(5) v(5) N(f33c618f3852442b84c12dd79424eb15:L1)|(880,635)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="ba18e0e3fa0541a987865ff406c23e6a" Joints="N(c71b1543b8974b41a7c58c35e6964d94:Out)|(430,765) N(64b7213eafc74263bd520781ecb23cf0:element)|(455,765)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="75c0f60264c04b6bb0b98a67347231aa" Joints="N(64b7213eafc74263bd520781ecb23cf0:outArray)|(495,765) h(24) v(-30) N(17be60c772d6454e812e14cd4b18c000:number)|(528,735)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="fde74b3cfd0f4702a1c7813bedd455b3" Joints="N(17be60c772d6454e812e14cd4b18c000:single precision float)|(555,735) h(155) v(-60) N(f33c618f3852442b84c12dd79424eb15:L5)|(880,675)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="b1b979e5833247c483fc57de9f36f49d" Joints="N(f33c618f3852442b84c12dd79424eb15:R0)|(920,625) h(20) B(1) N(c91e3d77a1d240759b0fc43b1e9fb7ee:Value)|(1083,625) B(1) v(500) N(500e358154604d2e934d1274285b9ef4:L4)|(1125,1125)" xmlns="http://www.ni.com/PlatformFramework" />
<DataAccessor Bounds="1120 930 40 15" DataItem="db8d7aef13ba41f7baaca404a8b86039" Id="97974600d84b48a69a056a7ff5fac990" Label="7604c714e3e3466ea5528c2e20bc3211" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Wfm(Single)" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<NodeLabel AttachedTo="97974600d84b48a69a056a7ff5fac990" Bounds="1165 930 95 14" Id="7604c714e3e3466ea5528c2e20bc3211" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>output waveform</p.Text>
</NodeLabel>
<Wire Id="38d5a182852049bd82d807795ed58d24" Joints="N(3b3aaab102104bebb577bfde455c1a95:output waveform)|(1090,935) N(97974600d84b48a69a056a7ff5fac990:Value)|(1123,935)" xmlns="http://www.ni.com/PlatformFramework" />
<MethodCall Bounds="1125 1080 40 60" Id="500e358154604d2e934d1274285b9ef4" ResolveFailedHint="audio_write" Signature="@e583d66ff1c84e1aa5f22bbd8c20fbab" Target="audio_write.sli::audio_write" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L1" Desc="dev" />
<Parameter Id="L2" Desc="sr" />
<Parameter Id="L3" Desc="pcm" />
<Parameter Id="L4" Desc="samples in" />
<Parameter Id="L5" Desc="error in" />
<Parameter Id="R0" Desc="return" />
<Parameter Id="R4" Desc="samples out" />
<Parameter Id="R5" Desc="error out" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Int32" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Single[]" Direction="Input" Hotspot="0 35" Id="L3" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 45" Id="L4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Input" Hotspot="0 55" Id="L5" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 45" Id="R4" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Error" Direction="Output" Hotspot="40 55" Id="R5" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Literal Bounds="835 1050 40 15" DataType="Int32" Id="29bd6539fede4409bfb885a918ebd901" Label="38ec503580de4bdb85b9fbc1c9928828" xmlns="http://www.ni.com/MocCommon">
<p.Data>0</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Wire Id="1847fe6fae5b4ff5af1c9c8336dcaeec" Joints="N(29bd6539fede4409bfb885a918ebd901:Out)|(875,1055) h(210) v(40) N(500e358154604d2e934d1274285b9ef4:L1)|(1125,1095)" xmlns="http://www.ni.com/PlatformFramework" />
<Literal Bounds="835 1075 55 15" DataType="Int32" Id="ad3f13392a8641139db7cb5128fe4a2e" Label="503ead9573d24af2a55540fd839934b3" xmlns="http://www.ni.com/MocCommon">
<p.Data>48000</p.Data>
<NumericBehavior Interpretation="Exact" ValueFormatter="DisplayFormat=Automatic:Digits=0:DigitDisplayType=DigitsOfPrecision:MinimumFieldWidth=0:AlwaysShowSign=False:ShowThousandsSeparator=False" />
</Literal>
<Wire Id="d09d64bf385f4da197026df623db8adc" Joints="N(ad3f13392a8641139db7cb5128fe4a2e:Out)|(890,1080) h(170) v(25) N(500e358154604d2e934d1274285b9ef4:L2)|(1125,1105)" xmlns="http://www.ni.com/PlatformFramework" />
<DataAccessor Bounds="1185 1080 40 15" DataItem="228c647bd504479ebb979351ae6e09e4" Id="c8f8df383b8140a6be40c67fd4daff30" Label="3edc50e8da64477787dc901453936867" xmlns="http://www.ni.com/MocCommon">
<Terminal DataType="Int32" Direction="Input" Hotspot="3 5" Id="Value" xmlns="http://www.ni.com/PlatformFramework" />
</DataAccessor>
<Wire Id="d55320a5cd0d43bb99fe41b962c385fe" Joints="N(500e358154604d2e934d1274285b9ef4:R0)|(1165,1085) N(c8f8df383b8140a6be40c67fd4daff30:Value)|(1188,1085)" xmlns="http://www.ni.com/PlatformFramework" />
<NodeLabel AttachedTo="29bd6539fede4409bfb885a918ebd901" Bounds="835 1032 30 15" Id="38ec503580de4bdb85b9fbc1c9928828" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>dev</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="ad3f13392a8641139db7cb5128fe4a2e" Bounds="835 1057 30 15" Id="503ead9573d24af2a55540fd839934b3" Visible="False" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>sr</p.Text>
</NodeLabel>
<NodeLabel AttachedTo="c8f8df383b8140a6be40c67fd4daff30" Bounds="1230 1080 49 14" Id="3edc50e8da64477787dc901453936867" xmlns="http://www.ni.com/PlatformFramework">
<p.Text>return_6</p.Text>
</NodeLabel>
<Wire Id="6745f1e578104ad0a910c3d73dfd9f06" Joints="N(e7082dc8445745878758c8ffc9fd2c2b:Out)|(-355,390) h(5) v(25) B(2) h(20) v(-25) h(20) v(-10) h(270) B(7) N(3c09dd5cbd3c4e45855ffff42a4e6a50:x)|(355,380) B(7) v(-260) N(399f0312a8af42a3aea315dc686f81c8:L3)|(645,120) B(7) v(435) h(360) B(12) h(405) v(-130) N(f33c618f3852442b84c12dd79424eb15:L6)|(880,685) B(12) v(-30) N(64b7213eafc74263bd520781ecb23cf0:c0t0v)|(455,785) B(2) N(719a0e801dc34387acf0a41a30e31d34:T0)|(-350,430)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="3deb4f8e5d845e8ba95080a7227fb0b" Joints="N(f33c618f3852442b84c12dd79424eb15:R5)|(920,675) h(115) B(1) h(130) v(5) N(1f0d66d154674a1d94cabf1bc46cf290:Value)|(1173,680) B(1) v(260) B(5) N(3b3aaab102104bebb577bfde455c1a95:Y)|(1050,935) B(5) v(180) N(500e358154604d2e934d1274285b9ef4:L3)|(1125,1115)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="7fb3f4093ae34aaa8f10783d99d9e2ae" Joints="N(2623587b74ed4d259a2a94270c551e23:c0t0v)|(8,260) h(12) v(-105) N(e139500623c3413ca0d2b9a6cc947bd9:number)|(58,155)" xmlns="http://www.ni.com/PlatformFramework" />
<MethodCall Bounds="405 105 40 40" Id="b874091284ac4a9c9b03a9085e2355bb" ResolveFailedHint=""C:\\Users\\jk\\Documents\\LabVIEW Projects\\VI Project\\Function_2.gvi"" Signature="@7ae3fadced944367913a1c7c21400b8b" Target="frame.gvi" xmlns="http://www.ni.com/MocCommon">
<p.MethodDeclaration>
<MethodDeclaration xmlns="http://www.ni.com/PlatformFramework">
<Parameter Id="L0" Desc="fs" />
<Parameter Id="L1" Desc="bitrate" />
<Parameter Id="L2" Desc="frame length (ms)" />
<Parameter Id="R0" Desc="frame length (samples)" />
<Parameter Id="R1" Desc="bytes per frame" />
</MethodDeclaration>
</p.MethodDeclaration>
<Terminal DataType="Int32" Direction="Input" Id="L0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 15" Id="L1" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Input" Hotspot="0 25" Id="L2" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 5" Id="R0" xmlns="http://www.ni.com/PlatformFramework" />
<Terminal DataType="Int32" Direction="Output" Hotspot="40 15" Id="R1" xmlns="http://www.ni.com/PlatformFramework" />
</MethodCall>
<Wire Id="266db2a77ca6496bb868bfe4fe19ae7b" Joints="N(b874091284ac4a9c9b03a9085e2355bb:R0)|(445,110) h(21) v(20) N(399f0312a8af42a3aea315dc686f81c8:L4)|(645,130)" xmlns="http://www.ni.com/PlatformFramework" />
<Wire Id="5135c6a037c6441fbcd8c70de08c84fd" Joints="N(b874091284ac4a9c9b03a9085e2355bb:R1)|(445,120) h(6) v(545) N(f33c618f3852442b84c12dd79424eb15:L4)|(880,665)" xmlns="http://www.ni.com/PlatformFramework" />
</BlockDiagram>
<NativeFrontPanel AllowMaximize="[bool]False" Background="[SMSolidColorBrush]#ffffffff" EnforceMaximumSize="[bool]True" Height="[float]1600" Id="13" Left="[float]0" MaxHeight="[float]1600" MaxWidth="[float]2000" MinHeight="[float]0" MinWidth="[float]0" PanelSizeMode="Fixed" Top="[float]0" Width="[float]2000" WindowTitleOption="[WindowTitleOption]None">
<PanelExecutionWindow Id="14" />
</NativeFrontPanel>
<DataItem AdaptToDiagramType="True" DataType="Int32" Id="bea6af9cbe4274bac352cf4b6cb0a2" Name="return" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>0</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="UInt8[]" Id="c3dbcb99395a400489bc9724da6dbc26" Name="data out" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>null</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="Int32" Id="ad66b8ce98b7457786d7981b8c13dda6" Name="return_3" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>0</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="Int32" Id="6e057975d93f4ce99c9fe2d08951fcaa" Name="return_5" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>0</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="Single[]" Id="b1de81ed0dd4481181d4aecceba00829" Name="pcm out" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>null</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="Wfm(Single)" Id="db8d7aef13ba41f7baaca404a8b86039" Name="output waveform" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>
<Waveform>
<Timestamp>60052752000;0;Utc</Timestamp>
<Interval>0x3FF0000000000000</Interval>
<Data>
<Array Lengths="0" />
</Data>
</Waveform>
</p.DefaultValue>
</DataItem>
<DataItem AdaptToDiagramType="True" DataType="Int32" Id="228c647bd504479ebb979351ae6e09e4" Name="return_6" xmlns="http://www.ni.com/MocCommon">
<p.DefaultValue>0</p.DefaultValue>
</DataItem>
</VirtualInstrument>
<DataTypeReferenceTable xmlns="http://www.ni.com/PlatformFramework">
<p.TypeReference TypeId="dd8c4c8b30244cb0915f00dddcdf4081">
<Attributed AttributedType="@1126e846558f4ff28239878dcdc51d67">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|0|1" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]40" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="e5606a63445e4d9183384d841bdddc34">
<Attributed AttributedType="@7e5ab2eb946044c0a7f5309825bc8d4a">
<AttributeValues>
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]40" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="4a683b97df1c4835b0d16dab7f9efb73">
<Attributed AttributedType="@351d523f5a3744f2b785dd77a1c23355">
<AttributeValues>
<AttributeValue Name="NationalInstruments.NamespaceName" Value="[QualifiedName]NI::G Core::Sound" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="bd2232353db34e3ebe062acdcac878ce">
<Composite Id="1" Name="Variant" Sealed="" GenericTypeDefinition="Void" BaseType="Void" />
</p.TypeReference>
<p.TypeReference TypeId="e583d66ff1c84e1aa5f22bbd8c20fbab">
<Attributed AttributedType="@c8e4d53d63e2497985bda6604c597ffb">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|1|2|3|4|0|1|2" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]60" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="4c87b07a7e1d424a9d57f0a155a86623">
<Attributed AttributedType="@af72df415c9b4df1a1201af6323ca836">
<AttributeValues>
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]50" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]50" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="50c5984651ad4a32bded95f0cf4ee775">
<Attributed AttributedType="@3e941ddd2d7c4908b002239de601bd44">
<AttributeValues>
<AttributeValue Name="NationalInstruments.NamespaceName" Value="[QualifiedName]NI::Analysis::Generation" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="6707ce2a151f4d3fb9cb5fdc5b487f4b">
<Attributed AttributedType="@89ad7190c1254c69b18ec9dd9db374a9">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|1|2|3|4|5|6|0|1|2|3" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]90" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="7d88648779be47aabe858f6655d2a5f6">
<Attributed AttributedType="@4e9b6b1e440649689931b281609f802a">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|1|2|3|0|1|2" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]50" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="14af44a29caa4a31b602d748d4b75f61">
<Attributed AttributedType="@0909455133a84a8b86296f25cd78c7c0">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|0|1" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]40" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="583b62dc09664dc59d300e56443f420e">
<Attributed AttributedType="@14bf494830b04deb9970871055744aad">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|1|2|0|1|2" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]40" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="72f50d413c944c16bbbcca93dab12897">
<Attributed AttributedType="@6bcf0e723e9e4674a16fb2af6a130056">
<AttributeValues>
<AttributeValue Name="NationalInstruments.Compiler.ParameterCallIndex" Value="[ParameterCallIndexFields]0|1|2|3|4|5|6|7|0|1|2|3" />
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]90" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="7ae3fadced944367913a1c7c21400b8b">
<Attributed AttributedType="@dd83a955b5744682a3d5f1e64f29e56b">
<AttributeValues>
<AttributeValue Name="NI.ConnectorPaneHeight" Value="[int]40" />
<AttributeValue Name="NI.ConnectorPaneWidth" Value="[int]40" />
</AttributeValues>
</Attributed>
</p.TypeReference>
<p.TypeReference TypeId="1126e846558f4ff28239878dcdc51d67">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Opus Encode State Size" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@eaa0952f2df44056ad3ef319e4eea008">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0562ec987bca4cab89e716bb06c3166e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]return" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@08c77f559dce419195b83cbe78a28f03">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="7e5ab2eb946044c0a7f5309825bc8d4a">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Sound File Read Simple.gvi" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@c3a8e9be3cca488491e5aaa0fe9b4d14">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]sound file" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@264d0a54202b44988a5c36635d4dafc1">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]position mode" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@d9b6c03e0c384b42bfdbf7d4c0d0fbce">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]position offset" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@eaa0952f2df44056ad3ef319e4eea008">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@e877647a98654e60b18794b5c0d4769a">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]number of samples/ch" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@1b43e8e8e5874b11abcad3cbc84ba0d5">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]data" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@38740ec0017b45be94f0a3140661515e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]offset" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@08c77f559dce419195b83cbe78a28f03">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="351d523f5a3744f2b785dd77a1c23355">
<Typedef TypedefName="Sound File Position.gtype" UnderlyingType="UInt16" />
</p.TypeReference>
<p.TypeReference TypeId="c8e4d53d63e2497985bda6604c597ffb">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="audio_write" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@f0a2fdadc8d1450f8fcd1facdc311656">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]dev" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@d9b6c03e0c384b42bfdbf7d4c0d0fbce">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]sr" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0f4c456e738041e294e7e550cc2e4908">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]pcm" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@c59352b5f1ca4282bb308337a582152e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]samples in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@ce87306e75d34826a8287995cdc81380">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0562ec987bca4cab89e716bb06c3166e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]return" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@7e6675c013374189925cca2744f1aaa0">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]samples out" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@e71f0cfc43544ee2babebffe49ea5240">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="af72df415c9b4df1a1201af6323ca836">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Gaussian White Noise.gvi" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@c9b838df0cdf41999dc4a4bea1983dc8">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]samples" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@afdca3de6d4b484ebfeae4fbffbe20ed">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]standard deviation" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0835aba92da4494680526f19d29e9541">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@75b370f67bc34d719dc93bda434a28c5">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]seed" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@2ce16b1276f14655939e951777eb14c1">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@e69f845d441f464b9fcc48d144681de9">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]reset" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@9cdc57b758ff47d788970b15348ead82">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]offset" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@224795bc6ce7427f92adf83fe396d180">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]Gaussian white noise" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@4610c4a20998472a9f7a13868dcb2084">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state out" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@7826fa1d532c4c1591061c7a3ca9144d">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="3e941ddd2d7c4908b002239de601bd44">
<Typedef TypedefName="Gaussian White Noise State.gtype" UnderlyingType="@6fa599cec0e74cceb925eec3cf27ef9a" />
</p.TypeReference>
<p.TypeReference TypeId="89ad7190c1254c69b18ec9dd9db374a9">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Opus Encode" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@93243cf30d624a5e8c6036f72b16ec78">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@a73d164f687b4e01b61454127a93bdbe">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]pcm" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@75b370f67bc34d719dc93bda434a28c5">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]pcm_size" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@c59352b5f1ca4282bb308337a582152e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]frame_size" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@8ae447b2987a49e2a6494e825b266d21">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]data in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@f3d8dd51035c4a33823e8bb12ba6009f">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]max_data_bytes" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@f32d0e62aaad438b9ac55297ed166457">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0562ec987bca4cab89e716bb06c3166e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]return" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@b4427203b1be42b897dd69fc5cdcddae">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state out" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@53702870020c42309b8b039c8189f201">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]data out" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@8d92d3976d3146c29d0bada18229a4b9">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="4e9b6b1e440649689931b281609f802a">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Opus Encode Init" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@93243cf30d624a5e8c6036f72b16ec78">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@d9b6c03e0c384b42bfdbf7d4c0d0fbce">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]samplerate" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@75b370f67bc34d719dc93bda434a28c5">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]bitrate" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@2ce16b1276f14655939e951777eb14c1">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0562ec987bca4cab89e716bb06c3166e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]return" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@b4427203b1be42b897dd69fc5cdcddae">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]state out" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@7826fa1d532c4c1591061c7a3ca9144d">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />
</AttributeValues>
</Attributed>
</Parameters>
</Function>
</p.TypeReference>
<p.TypeReference TypeId="0909455133a84a8b86296f25cd78c7c0">
<Function Id="1" IsStatic="True" IsConstructor="False" Name="Opuis Decode State Size" ReturnType="Void" GenericTypeDefinition="Void">
<Parameters>
<Attributed AttributedType="@eaa0952f2df44056ad3ef319e4eea008">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error in" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@0562ec987bca4cab89e716bb06c3166e">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]return" />
</AttributeValues>
</Attributed>
<Attributed AttributedType="@08c77f559dce419195b83cbe78a28f03">
<AttributeValues>
<AttributeValue Name="NI.UserDefinedName" Value="[string]error out" />