openvidu-testapp: fix codec selector

pull/850/merge
pabloFuente 2024-11-27 16:47:50 +01:00
parent a4b010faba
commit 57be57d892
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@
<mat-form-field id="trackPublish-videoCodec">
<mat-label>videoCodec</mat-label>
<mat-select [(value)]="trackPublishOptions.videoCodec">
<mat-option *ngFor="let codec of ['VP8','H264','VP9','AV1']" [value]="codec">{{codec}}</mat-option>
<mat-option *ngFor="let codec of ['vp8','h264','vp9','av1']" [value]="codec">{{codec | uppercase}}</mat-option>
</mat-select>
</mat-form-field>
<mat-form-field id="trackPublish-scalabilityMode">