Examples of VideoFrameTag


Examples of org.apache.flex.swf.tags.VideoFrameTag

        final ICharacterTag streamTag = getTagById(id, TagType.VideoFrame);
        assert streamTag.getTagType() == TagType.DefineVideoStream;
        final int frameNum = bitStream.readUI16();
        final byte[] videoData = bitStream.readToBoundary();

        final VideoFrameTag tag = new VideoFrameTag();
        tag.setStreamTag((DefineVideoStreamTag)streamTag);
        tag.setFrameNum(frameNum);
        tag.setVideoData(videoData);
        return tag;
    }
View Full Code Here

Examples of tv.porst.swfretools.parser.tags.VideoFrameTag

      addNode("NumSymbols", ctag.getNumSymbols());
      addNode("Symbols", ctag.getSymbols());
    }
    else if (tag instanceof VideoFrameTag) {
      final VideoFrameTag ctag = (VideoFrameTag) tag;

      addNode("StreamID", ctag.getStreamId());
      addNode("FrameNum", ctag.getFrameNum());
      addNode("VideoData", ctag.getVideoData());
    }
    else if (tag instanceof RawABCTag) {
      final RawABCTag ctag = (RawABCTag) tag;

      addNode("ABCData", ctag.getAbcData());
    }
    else if (tag instanceof DoABCTag) {
      final DoABCTag ctag = (DoABCTag) tag;

      addNode("Name", ctag.getName());
      addNode("Flags", ctag.getFlags());
      addNode("ABCData", ctag.getAbcData());
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.