Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make error #34

Open
ghost opened this issue Sep 15, 2015 · 0 comments
Open

Make error #34

ghost opened this issue Sep 15, 2015 · 0 comments

Comments

@ghost
Copy link

ghost commented Sep 15, 2015

My Makefile

FLEX_SDK ?= /home/andrey/apache-flex-sdk-4.14.1-bin
MXMLC ?= $(FLEX_SDK)/bin/mxmlc
COMPC ?= $(FLEX_SDK)/bin/compc
BUILD_DIR ?= build
GRIND_PLAYER=$(BUILD_DIR)/GrindPlayer.swf
GRIND_FRAMEWORK=$(BUILD_DIR)/libs/GrindFramework.swc
ADVERTISEMENT_PLUGIN=$(BUILD_DIR)/libs/AdvertisementPlugin.swc
SUBTITLES_PLUGIN=$(BUILD_DIR)/libs/SubtitlesPlugin.swc

DEBUG ?= false
LOGGING ?= false

TARGET_PLAYER ?= 10.2

SRC = src/GrindPlayer.mxml

all: $(GRIND_PLAYER)

clean:
rm -rf build

$(BUILD_DIR): $(BUILD_DIR)/libs
mkdir -p $(BUILD_DIR)

$(BUILD_DIR)/libs:
mkdir -p $(BUILD_DIR)/libs
cp libs/* $(BUILD_DIR)/libs/

$(GRIND_PLAYER): $(BUILD_DIR) $(GRIND_FRAMEWORK) $(ADVERTISEMENT_PLUGIN) $(SUBTITLES_PLUGIN) $(SRC)
$(MXMLC) -o $(GRIND_PLAYER)
-debug=$(DEBUG)
-locale=en_US,ru_RU
-swf-version=11
-target-player=$(TARGET_PLAYER)
-default-size=640,360
-default-background-color=0
-sp src locale/{locale}
-l "$(FLEX_SDK)/frameworks/libs" "$(FLEX_SDK)/frameworks/locale/{locale}"
-l libs "$(BUILD_DIR)/libs"
-externs ru.kutu.osmf.advertisement.AdvertisementPlugin
-externs ru.kutu.osmf.subtitles.SubtitlesPlugin
-define CONFIG::HLS false
-define CONFIG::DEV false
src/GrindPlayer.mxml
..

Error after make
root@clappr-dev:/home/andrey/grind_player/GrindPlayer# make 2> error.txt
mkdir -p build
/home/andrey/apache-flex-sdk-4.14.1-bin/bin/compc -o build/libs/GrindFramework.swc
-debug=false
-swf-version=11
-target-player=10.2
-sp "GrindFramework/src"
-is "GrindFramework/src"
-external-library-path+="/home/andrey/apache-flex-sdk-4.14.1-bin/frameworks/libs",libs
-define CONFIG::LOGGING false
-define CONFIG::FLASH_10_1 true
Loading configuration file /home/andrey/apache-flex-sdk-4.14.1-bin/frameworks/flex-config.xml
Encountered too many errors!

/home/andrey/grind_player/GrindPlayer# cat error.txt
/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/media/GrindMediaPlayerBase.as(29): col: 44 Error: The definition of base class MediaPlayer was not found.

public class GrindMediaPlayerBase extends MediaPlayer {
                                          ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/media/GrindMediaPlayerBase.as(39): col: 32 Error: Method marked override must override another method.

    override public function set media(value:MediaElement):void {
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/metadata/StrobeDynamicMetadata.as(34): col: 53 Error: The definition of base class Metadata was not found.

public dynamic class StrobeDynamicMetadata extends Metadata
                                                   ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/metadata/StrobeDynamicMetadata.as(54): col: 28 Error: Method marked override must override another method.

    override public function getValue(key:String):*
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/metadata/StrobeDynamicMetadata.as(80): col: 28 Error: Method marked override must override another method.

    override public function addValue(key:String, value:Object):void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/metadata/StrobeDynamicMetadata.as(130): col: 28 Error: Method marked override must override another method.

    override public function removeValue(key:String):*
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/metadata/StrobeDynamicMetadata.as(163): col: 32 Error: Method marked override must override another method.

    override public function get keys():Vector.<String>
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(61): col: 52 Error: The definition of base class HTTPStreamDownloader was not found.

public class FailoverHTTPStreamDownloader extends HTTPStreamDownloader
                                                  ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(76): col: 32 Error: Method marked override must override another method.

    override public function get isOpen():Boolean
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(84): col: 32 Error: Method marked override must override another method.

    override public function get isComplete():Boolean
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(92): col: 32 Error: Method marked override must override another method.

    override public function get hasData():Boolean
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(100): col: 32 Error: Method marked override must override another method.

    override public function get hasErrors():Boolean
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(108): col: 32 Error: Method marked override must override another method.

    override public function get downloadDuration():Number
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(116): col: 32 Error: Method marked override must override another method.

    override public function get downloadBytesCount():Number
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(126): col: 28 Error: Method marked override must override another method.

    override public function open(request:URLRequest, dispatcher:IEventDispatcher, timeout:Number):void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(187): col: 28 Error: Method marked override must override another method.

    override public function close(dispose:Boolean = false):void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(247): col: 32 Error: Method marked override must override another method.

    override public function get totalAvailableBytes():int
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(265): col: 28 Error: Method marked override must override another method.

    override public function getBytes(numBytes:int = 0):IDataInput
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(310): col: 28 Error: Method marked override must override another method.

    override public function clearSavedBytes():void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(324): col: 28 Error: Method marked override must override another method.

    override public function appendToSavedBytes(source:IDataInput, count:uint):void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(338): col: 28 Error: Method marked override must override another method.

    override public function saveRemainingBytes():void
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamDownloader.as(358): col: 28 Error: Method marked override must override another method.

    override public function toString():String
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/elements/FailoverF4MLoader.as(73): col: 41 Error: The definition of base class F4MLoader was not found.

public class FailoverF4MLoader extends F4MLoader
                                       ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/elements/FailoverF4MLoader.as(104): col: 31 Error: Method marked override must override another method.

    override protected function executeLoad(loadTrait:LoadTrait):void
                                ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(7): col: 35 Error: The definition of base class Logger was not found.

public class GrindLogger extends Logger {
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(16): col: 28 Error: Method marked override must override another method.

    override public function debug(message:String, ...rest):void {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(20): col: 28 Error: Method marked override must override another method.

    override public function info(message:String, ...rest):void {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(24): col: 28 Error: Method marked override must override another method.

    override public function warn(message:String, ...rest):void {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(28): col: 28 Error: Method marked override must override another method.

    override public function error(message:String, ...rest):void {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLogger.as(32): col: 28 Error: Method marked override must override another method.

    override public function fatal(message:String, ...rest):void {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLoggerFactory.as(10): col: 42 Error: The definition of base class LoggerFactory was not found.

public class GrindLoggerFactory extends LoggerFactory {
                                        ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/log/GrindLoggerFactory.as(21): col: 28 Error: Method marked override must override another method.

    override public function getLogger(category:String):Logger {
                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/dvr/FailoverHTTPStreamingDVRCastTimeTrait.as(38): col: 61 Error: The definition of base class TimeTrait was not found.

public class FailoverHTTPStreamingDVRCastTimeTrait extends TimeTrait
                                                           ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/dvr/FailoverHTTPStreamingDVRCastTimeTrait.as(52): col: 32 Error: Method marked override must override another method.

    override public function get duration():Number
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/dvr/FailoverHTTPStreamingDVRCastTimeTrait.as(62): col: 32 Error: Method marked override must override another method.

    override public function get currentTime():Number
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamingNetLoader.as(45): col: 54 Error: The definition of base class HTTPStreamingNetLoader was not found.

public class FailoverHTTPStreamingNetLoader extends HTTPStreamingNetLoader
                                                    ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamingNetLoader.as(66): col: 31 Error: Method marked override must override another method.

    override protected function createNetStream(connection:NetConnection, resource:URLResource):NetStream
                                ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamingNetLoader.as(81): col: 31 Error: Method marked override must override another method.

    override protected function processFinishLoading(loadTrait:NetStreamLoadTrait):void
                                ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/media/GrindMediaFactoryBase.as(11): col: 45 Error: The definition of base class DefaultMediaFactory was not found.

public class GrindMediaFactoryBase extends DefaultMediaFactory {
                                           ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/dvr/FailoverHTTPStreamingDVRCastDVRTrait.as(38): col: 60 Error: The definition of base class DVRTrait was not found.

public class FailoverHTTPStreamingDVRCastDVRTrait extends DVRTrait
                                                          ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamSource.as(60): col: 51 Error: Interface IHTTPStreamSource was not found.

public class FailoverHTTPStreamSource implements IHTTPStreamSource, IHTTPStreamHandler
                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamSource.as(60): col: 70 Error: Interface IHTTPStreamHandler was not found.

public class FailoverHTTPStreamSource implements IHTTPStreamSource, IHTTPStreamHandler
                                                                    ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/net/httpstreaming/FailoverHTTPStreamMixer.as(58): col: 74 Error: Interface IHTTPStreamSource was not found.

public class FailoverHTTPStreamMixer extends EventDispatcher implements IHTTPStreamSource
                                                                        ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/chrome/utils/MediaElementUtils.as(40): col: 60 Error: Type was not found or was not a compile-time constant: MediaElement.

    public static function getMediaElementParentOfType(media:MediaElement, type:Class):MediaElement
                                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/chrome/utils/MediaElementUtils.as(40): col: 86 Error: Type was not found or was not a compile-time constant: MediaElement.

    public static function getMediaElementParentOfType(media:MediaElement, type:Class):MediaElement
                                                                                       ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/chrome/utils/MediaElementUtils.as(58): col: 60 Error: Type was not found or was not a compile-time constant: MediaElement.

    public static function getResourceFromParentOfType(media:MediaElement, type:Class):MediaResourceBase
                                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/chrome/utils/MediaElementUtils.as(58): col: 86 Error: Type was not found or was not a compile-time constant: MediaResourceBase.

    public static function getResourceFromParentOfType(media:MediaElement, type:Class):MediaResourceBase
                                                                                       ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/chrome/utils/MediaElementUtils.as(77): col: 46 Error: Type was not found or was not a compile-time constant: MediaElement.

    public static function getStreamType(media:MediaElement):String
                                               ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(183): col: 53 Error: Type was not found or was not a compile-time constant: MediaPlayerStateChangeEvent.

    protected function onMediaPlayerStateChange(event:MediaPlayerStateChangeEvent):void {
                                                      ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(207): col: 46 Error: Type was not found or was not a compile-time constant: DisplayObjectEvent.

    protected function onMediaSizeChange(event:DisplayObjectEvent):void {
                                               ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(212): col: 44 Error: Type was not found or was not a compile-time constant: SeekEvent.

    protected function onSeekingChange(event:SeekEvent):void {
                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(220): col: 43 Error: Type was not found or was not a compile-time constant: AudioEvent.

    protected function onVolumeChange(event:AudioEvent):void {
                                            ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(224): col: 45 Error: Type was not found or was not a compile-time constant: TimeEvent.

    protected function onDurationChange(event:TimeEvent):void {
                                              ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(228): col: 48 Error: Type was not found or was not a compile-time constant: TimeEvent.

    protected function onCurrentTimeChange(event:TimeEvent):void {
                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(232): col: 48 Error: Type was not found or was not a compile-time constant: LoadEvent.

    protected function onBytesLoadedChange(event:LoadEvent):void {
                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(242): col: 39 Error: Type was not found or was not a compile-time constant: TimeEvent.

    protected function onComplete(event:TimeEvent):void {
                                        ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(249): col: 62 Error: Type was not found or was not a compile-time constant: TimeEvent.

        eventMaps[TimeEvent.DURATION_CHANGE]                    = function(event:TimeEvent):Array { return [event.time] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(250): col: 57 Error: Type was not found or was not a compile-time constant: TimeEvent.

        eventMaps[TimeEvent.COMPLETE]                           = function(event:TimeEvent):Array { return [event.time] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(251): col: 64 Error: Type was not found or was not a compile-time constant: PlayEvent.

        eventMaps[PlayEvent.PLAY_STATE_CHANGE]                  = function(event:PlayEvent):Array { return [event.playState] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(252): col: 63 Error: Type was not found or was not a compile-time constant: PlayEvent.

        eventMaps[PlayEvent.CAN_PAUSE_CHANGE]                   = function(event:PlayEvent):Array { return [event.canPause] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(253): col: 62 Error: Type was not found or was not a compile-time constant: AudioEvent.

        eventMaps[AudioEvent.VOLUME_CHANGE]                     = function(event:AudioEvent):Array { return [event.volume] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(254): col: 61 Error: Type was not found or was not a compile-time constant: AudioEvent.

        eventMaps[AudioEvent.MUTED_CHANGE]                      = function(event:AudioEvent):Array { return [event.muted] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(255): col: 59 Error: Type was not found or was not a compile-time constant: AudioEvent.

        eventMaps[AudioEvent.PAN_CHANGE]                        = function(event:AudioEvent):Array { return [event.pan] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(256): col: 77 Error: Type was not found or was not a compile-time constant: AlternativeAudioEvent.

        eventMaps[AlternativeAudioEvent.AUDIO_SWITCHING_CHANGE] = function(event:AlternativeAudioEvent):Array { return [event.switching] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(257): col: 91 Error: Type was not found or was not a compile-time constant: AlternativeAudioEvent.

        eventMaps[AlternativeAudioEvent.NUM_ALTERNATIVE_AUDIO_STREAMS_CHANGE]   = function(event:AlternativeAudioEvent):Array { return [] };
                                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(258): col: 62 Error: Type was not found or was not a compile-time constant: SeekEvent.

        eventMaps[SeekEvent.SEEKING_CHANGE]                     = function(event:SeekEvent):Array { return [event.time] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(259): col: 71 Error: Type was not found or was not a compile-time constant: DynamicStreamEvent.

        eventMaps[DynamicStreamEvent.SWITCHING_CHANGE]          = function(event:DynamicStreamEvent):Array { return [event.switching] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(260): col: 72 Error: Type was not found or was not a compile-time constant: DynamicStreamEvent.

        eventMaps[DynamicStreamEvent.AUTO_SWITCH_CHANGE]        = function(event:DynamicStreamEvent):Array { return [event.autoSwitch] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(261): col: 78 Error: Type was not found or was not a compile-time constant: DynamicStreamEvent.

        eventMaps[DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE] = function(event:DynamicStreamEvent):Array { return [] };
                                                                                  ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(262): col: 74 Error: Type was not found or was not a compile-time constant: DisplayObjectEvent.

        eventMaps[DisplayObjectEvent.DISPLAY_OBJECT_CHANGE]     = function(event:DisplayObjectEvent):Array { return [] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(263): col: 71 Error: Type was not found or was not a compile-time constant: DisplayObjectEvent.

        eventMaps[DisplayObjectEvent.MEDIA_SIZE_CHANGE]         = function(event:DisplayObjectEvent):Array { return [event.newWidth, event.newHeight] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(264): col: 64 Error: Type was not found or was not a compile-time constant: LoadEvent.

        eventMaps[LoadEvent.LOAD_STATE_CHANGE]                  = function(event:LoadEvent):Array { return [event.loadState] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(265): col: 65 Error: Type was not found or was not a compile-time constant: LoadEvent.

        eventMaps[LoadEvent.BYTES_LOADED_CHANGE]                = function(event:LoadEvent):Array { return [event.bytes] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(266): col: 65 Error: Type was not found or was not a compile-time constant: LoadEvent.

        eventMaps[LoadEvent.BYTES_TOTAL_CHANGE]                 = function(event:LoadEvent):Array { return [event.bytes] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(267): col: 65 Error: Type was not found or was not a compile-time constant: BufferEvent.

        eventMaps[BufferEvent.BUFFERING_CHANGE]                 = function(event:BufferEvent):Array { return [event.buffering] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(268): col: 66 Error: Type was not found or was not a compile-time constant: BufferEvent.

        eventMaps[BufferEvent.BUFFER_TIME_CHANGE]               = function(event:BufferEvent):Array { return [event.bufferTime] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(269): col: 62 Error: Type was not found or was not a compile-time constant: DRMEvent.

        eventMaps[DRMEvent.DRM_STATE_CHANGE]                    = function(event:DRMEvent):Array { return [event.drmState] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(270): col: 65 Error: Type was not found or was not a compile-time constant: DVREvent.

        eventMaps[DVREvent.IS_RECORDING_CHANGE]                 = function(event:DVREvent):Array { return [] };
                                                                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(273): col: 85 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.CAN_PLAY_CHANGE]                 = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(274): col: 85 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.CAN_SEEK_CHANGE]                 = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(275): col: 85 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.TEMPORAL_CHANGE]                 = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(276): col: 85 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.HAS_AUDIO_CHANGE]                = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(277): col: 91 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.IS_DYNAMIC_STREAM_CHANGE]        = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(278): col: 86 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.CAN_BUFFER_CHANGE]               = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(279): col: 92 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.HAS_DISPLAY_OBJECT_CHANGE]       = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(280): col: 94 Error: Type was not found or was not a compile-time constant: MediaPlayerCapabilityChangeEvent.

        eventMaps[MediaPlayerCapabilityChangeEvent.HAS_ALTERNATIVE_AUDIO_CHANGE]    = function(event:MediaPlayerCapabilityChangeEvent):Array { return [event.enabled] };
                                                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(283): col: 61 Error: Type was not found or was not a compile-time constant: MediaErrorEvent.

        eventMaps[MediaErrorEvent.MEDIA_ERROR]      = function(event:MediaErrorEvent):Array { return [event.error.errorID, event.error.message, event.error.detail] };
                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(284): col: 62 Error: Type was not found or was not a compile-time constant: TimeEvent.

        eventMaps[TimeEvent.CURRENT_TIME_CHANGE]    = function(event:TimeEvent):Array { return [event.time] };
                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(285): col: 86 Error: Type was not found or was not a compile-time constant: MediaPlayerStateChangeEvent.

        eventMaps[MediaPlayerStateChangeEvent.MEDIA_PLAYER_STATE_CHANGE]    = function(event:MediaPlayerStateChangeEvent):Array { return [event.state] };
                                                                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(286): col: 58 Error: Type was not found or was not a compile-time constant: QoSInfoEvent.

        eventMaps[QoSInfoEvent.QOS_UPDATE]          = function(event:QoSInfoEvent):Array { return [event.qosInfo] };
                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/JavaScriptBridgeBase.as(287): col: 61 Error: Type was not found or was not a compile-time constant: MetadataEvent.

        eventMaps[NetStreamCodes.ON_META_DATA]      = function(event:MetadataEvent):Array { return [event.value] };
                                                                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/views/api/IStatInfo.as(13): col: 32 Error: Type was not found or was not a compile-time constant: VideoSurface.

    function update(videoSurface:VideoSurface, netStream:NetStream, qosInfos:Vector.<QoSInfo>):void;
                                 ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/views/api/IStatInfo.as(13): col: 76 Error: Type was not found or was not a compile-time constant: QoSInfo.

    function update(videoSurface:VideoSurface, netStream:NetStream, qosInfos:Vector.<QoSInfo>):void;
                                                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(10): col: 44 Error: Access of undefined property StreamType.

    public var resource:Object = {streamType:StreamType.LIVE_OR_RECORDED};
                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(10): col: 44 Error: Access of undefined property StreamType.

    public var resource:Object = {streamType:StreamType.LIVE_OR_RECORDED};
                                             ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(14): col: 33 Error: Access of undefined property ScaleMode.

    public var scaleMode:String = ScaleMode.LETTERBOX;
                                  ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(14): col: 33 Error: Access of undefined property ScaleMode.

    public var scaleMode:String = ScaleMode.LETTERBOX;
                                  ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(3): col: 24 Error: Definition org.osmf.layout:ScaleMode could not be found.

import org.osmf.layout.ScaleMode;
                      ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/ru/kutu/grind/config/PlayerConfiguration.as(4): col: 21 Error: Definition org.osmf.net:StreamType could not be found.

import org.osmf.net.StreamType;
                   ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/errors/StrobePlayerErrorCodes.as(24): col: 23 Error: Definition org.osmf.utils:OSMFStrings could not be found.

import org.osmf.utils.OSMFStrings;
                     ^

/home/andrey/grind_player/GrindPlayer/GrindFramework/src/org/osmf/player/utils/StrobePlayerStrings.as(25): col: 23 Error: Definition org.osmf.utils:OSMFStrings could not be found.

import org.osmf.utils.OSMFStrings;
                     ^

make: *** [build/libs/GrindFramework.swc] Error 101

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants