Implement fallback to software when hardware decoding is unavailable

This commit is contained in:
Cameron Gutman
2016-06-09 12:23:23 -05:00
parent f2d9bce746
commit 1f3f4bd0aa
5 changed files with 44 additions and 15 deletions
+3 -1
View File
@@ -30,6 +30,8 @@ function handleMessage(msg) {
$('#loadingSpinner').css('display', 'none');
} else if(msg.data.indexOf('ProgressMsg: ') === 0) {
$('#loadingMessage').text(msg.data.replace('ProgressMsg: ', ''));
} else if(msg.data.indexOf('TransientMsg: ') === 0) {
snackbarLog(msg.data.replace('TransientMsg: ', ''));
}
}
}
}