@sigmaott/base-next 1.4.48 → 1.4.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.npmrc +3 -0
- package/package.json +1 -1
- package/src/components/Channel/PresetConfigItem.vue +42 -26
package/.npmrc
ADDED
package/package.json
CHANGED
|
@@ -64,6 +64,7 @@ const optionsEncoder = computed(() => {
|
|
|
64
64
|
if (encoderTypeValue.value === 'NETINT') {
|
|
65
65
|
return [
|
|
66
66
|
{ label: 'NETINT', value: 'netint' },
|
|
67
|
+
{ label: 'Passthrough', value: 'passthrough' },
|
|
67
68
|
]
|
|
68
69
|
}
|
|
69
70
|
|
|
@@ -692,32 +693,47 @@ const optionsPreset = computed(() => {
|
|
|
692
693
|
value: 'llhp',
|
|
693
694
|
},
|
|
694
695
|
]
|
|
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
|
-
|
|
696
|
+
: encoderValue.value === 'netint'
|
|
697
|
+
? [
|
|
698
|
+
{
|
|
699
|
+
label: 'MEDIUM',
|
|
700
|
+
value: 'medium',
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
label: 'FAST',
|
|
704
|
+
value: 'fast',
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
label: 'SLOW',
|
|
708
|
+
value: 'slow',
|
|
709
|
+
},
|
|
710
|
+
]
|
|
711
|
+
: [
|
|
712
|
+
{
|
|
713
|
+
label: 'MEDIUM',
|
|
714
|
+
value: 'medium',
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
label: 'FAST',
|
|
718
|
+
value: 'fast',
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
label: 'FASTER',
|
|
722
|
+
value: 'faster',
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
label: 'VERYFAST',
|
|
726
|
+
value: 'veryfast',
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
label: 'SUPERFAST',
|
|
730
|
+
value: 'superfast',
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
label: 'ULTRAFAST',
|
|
734
|
+
value: 'ultrafast',
|
|
735
|
+
},
|
|
736
|
+
]
|
|
721
737
|
})
|
|
722
738
|
|
|
723
739
|
const codecSelection = computed(() => {
|