Skip to content

Commit

Permalink
💄 show VideoLoader version info
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed Mar 15, 2022
1 parent 8daf3e6 commit a888376
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
anchor="center left"
self="center right"
>
Caching video frames.
Caching video frames. VideoLoader: {{ useV2 ? 'V2' : 'V1' }}.
</q-tooltip>
</q-circular-progress>
<q-btn
Expand Down Expand Up @@ -137,7 +137,7 @@ const useV2 = computed(() => {
const isSupported = window.VideoDecoder && window.EncodedVideoChunk && window.OffscreenCanvas
ret = isSupported && (mainStore.videoFormat === null || mainStore.videoFormat === 'mp4')
}
console.log('Video Decoder:', ret ? 'V2' : 'V1')
console.debug('VideoLoader:', ret ? 'V2' : 'V1')
return ret
})
Expand Down

0 comments on commit a888376

Please sign in to comment.