如果是视频播放,如果我使用的是GL_LINEAR,如果我的视频以黑框开头,那么我就无法从黑框到下一帧平滑过渡。附图。一些白色/彩色点和线如图所示。在此之后,视频正常播放。有没有人注意到或有解决方案。?
angular.module('myApp', [])
.service('sharedProperties', function () {
var AccountNumber;
return {
getProperty: function () {
return AccountNumber;
},
setProperty: function(value) {
AccountNumber= value;
}
};
});
function CtrlA($scope, sharedProperties) {
sharedProperties.setProperty($scope.AccountNumber);
}
function CtrlB($scope, sharedProperties) {
$scope.accno = sharedProperties.getProperty();
}