diff --git a/AS3GifPlayer/src/com/worlize/gif/GIFDecoder.as b/AS3GifPlayer/src/com/worlize/gif/GIFDecoder.as index f390d6b..8b32b9e 100644 --- a/AS3GifPlayer/src/com/worlize/gif/GIFDecoder.as +++ b/AS3GifPlayer/src/com/worlize/gif/GIFDecoder.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif { import com.worlize.gif.blocks.ApplicationExtension; diff --git a/AS3GifPlayer/src/com/worlize/gif/GIFFrame.as b/AS3GifPlayer/src/com/worlize/gif/GIFFrame.as index 9ea3313..847360d 100644 --- a/AS3GifPlayer/src/com/worlize/gif/GIFFrame.as +++ b/AS3GifPlayer/src/com/worlize/gif/GIFFrame.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif { import com.worlize.gif.blocks.ColorTableBlock; diff --git a/AS3GifPlayer/src/com/worlize/gif/GIFPlayer.as b/AS3GifPlayer/src/com/worlize/gif/GIFPlayer.as index 6e03bc9..328836e 100644 --- a/AS3GifPlayer/src/com/worlize/gif/GIFPlayer.as +++ b/AS3GifPlayer/src/com/worlize/gif/GIFPlayer.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif { import com.worlize.gif.constants.DisposalType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/ApplicationExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/ApplicationExtension.as index 8789017..415f5c8 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/ApplicationExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/ApplicationExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/ColorTableBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/ColorTableBlock.as index 42e5702..f3f9519 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/ColorTableBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/ColorTableBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.errors.OutOfDataError; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/CommentExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/CommentExtension.as index ed0009d..217034c 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/CommentExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/CommentExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/DataBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/DataBlock.as index 65a43ac..a4c22cb 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/DataBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/DataBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.errors.FileTypeError; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/GraphicControlExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/GraphicControlExtension.as index 92a4e26..fe8cd78 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/GraphicControlExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/GraphicControlExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/HeaderBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/HeaderBlock.as index 1c6577a..3664c17 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/HeaderBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/HeaderBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.GifVersion; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/IGIFBlockCodec.as b/AS3GifPlayer/src/com/worlize/gif/blocks/IGIFBlockCodec.as index d807e6c..714b760 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/IGIFBlockCodec.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/IGIFBlockCodec.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import flash.utils.ByteArray; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDataBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDataBlock.as index da4f8fb..a38da64 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDataBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDataBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.errors.FileTypeError; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDescriptorBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDescriptorBlock.as index 6065864..fb9bca3 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDescriptorBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/ImageDescriptorBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/LogicalScreenDescriptorBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/LogicalScreenDescriptorBlock.as index fd24156..a688ae0 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/LogicalScreenDescriptorBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/LogicalScreenDescriptorBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.errors.OutOfDataError; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/NetscapeExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/NetscapeExtension.as index a8260ba..db72880 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/NetscapeExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/NetscapeExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.errors.FileTypeError; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/PlainTextExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/PlainTextExtension.as index f6a28e0..efdabeb 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/PlainTextExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/PlainTextExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/TrailerBlock.as b/AS3GifPlayer/src/com/worlize/gif/blocks/TrailerBlock.as index cb66511..18e55d2 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/TrailerBlock.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/TrailerBlock.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/blocks/UnknownExtension.as b/AS3GifPlayer/src/com/worlize/gif/blocks/UnknownExtension.as index 1c6bbc9..cba95f1 100644 --- a/AS3GifPlayer/src/com/worlize/gif/blocks/UnknownExtension.as +++ b/AS3GifPlayer/src/com/worlize/gif/blocks/UnknownExtension.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.blocks { import com.worlize.gif.constants.BlockType; diff --git a/AS3GifPlayer/src/com/worlize/gif/constants/BlockType.as b/AS3GifPlayer/src/com/worlize/gif/constants/BlockType.as index 6b1ae4f..9aeeea8 100644 --- a/AS3GifPlayer/src/com/worlize/gif/constants/BlockType.as +++ b/AS3GifPlayer/src/com/worlize/gif/constants/BlockType.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.constants { public final class BlockType diff --git a/AS3GifPlayer/src/com/worlize/gif/constants/DefaultPalette.as b/AS3GifPlayer/src/com/worlize/gif/constants/DefaultPalette.as index ead6a36..42d3f00 100644 --- a/AS3GifPlayer/src/com/worlize/gif/constants/DefaultPalette.as +++ b/AS3GifPlayer/src/com/worlize/gif/constants/DefaultPalette.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.constants { public final class DefaultPalette diff --git a/AS3GifPlayer/src/com/worlize/gif/constants/DisposalType.as b/AS3GifPlayer/src/com/worlize/gif/constants/DisposalType.as index aad866f..5cf878f 100644 --- a/AS3GifPlayer/src/com/worlize/gif/constants/DisposalType.as +++ b/AS3GifPlayer/src/com/worlize/gif/constants/DisposalType.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.constants { public final class DisposalType diff --git a/AS3GifPlayer/src/com/worlize/gif/constants/GifVersion.as b/AS3GifPlayer/src/com/worlize/gif/constants/GifVersion.as index bac06d7..a6727da 100644 --- a/AS3GifPlayer/src/com/worlize/gif/constants/GifVersion.as +++ b/AS3GifPlayer/src/com/worlize/gif/constants/GifVersion.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.constants { public final class GifVersion diff --git a/AS3GifPlayer/src/com/worlize/gif/errors/FileTypeError.as b/AS3GifPlayer/src/com/worlize/gif/errors/FileTypeError.as index 4b7ade6..a724612 100644 --- a/AS3GifPlayer/src/com/worlize/gif/errors/FileTypeError.as +++ b/AS3GifPlayer/src/com/worlize/gif/errors/FileTypeError.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.errors { public class FileTypeError extends Error diff --git a/AS3GifPlayer/src/com/worlize/gif/errors/OutOfDataError.as b/AS3GifPlayer/src/com/worlize/gif/errors/OutOfDataError.as index fc50cb8..506927b 100644 --- a/AS3GifPlayer/src/com/worlize/gif/errors/OutOfDataError.as +++ b/AS3GifPlayer/src/com/worlize/gif/errors/OutOfDataError.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.errors { public class OutOfDataError extends Error diff --git a/AS3GifPlayer/src/com/worlize/gif/events/AsyncDecodeErrorEvent.as b/AS3GifPlayer/src/com/worlize/gif/events/AsyncDecodeErrorEvent.as index 2026354..e5a45ff 100644 --- a/AS3GifPlayer/src/com/worlize/gif/events/AsyncDecodeErrorEvent.as +++ b/AS3GifPlayer/src/com/worlize/gif/events/AsyncDecodeErrorEvent.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.events { import flash.events.ErrorEvent; diff --git a/AS3GifPlayer/src/com/worlize/gif/events/GIFDecoderEvent.as b/AS3GifPlayer/src/com/worlize/gif/events/GIFDecoderEvent.as index 2de5377..b76d582 100644 --- a/AS3GifPlayer/src/com/worlize/gif/events/GIFDecoderEvent.as +++ b/AS3GifPlayer/src/com/worlize/gif/events/GIFDecoderEvent.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.events { import com.worlize.gif.GIFFrame; diff --git a/AS3GifPlayer/src/com/worlize/gif/events/GIFPlayerEvent.as b/AS3GifPlayer/src/com/worlize/gif/events/GIFPlayerEvent.as index ac206bb..0bec8c6 100644 --- a/AS3GifPlayer/src/com/worlize/gif/events/GIFPlayerEvent.as +++ b/AS3GifPlayer/src/com/worlize/gif/events/GIFPlayerEvent.as @@ -1,3 +1,19 @@ +/************************************************************************ + * Copyright 2010-2011 Worlize Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + ***********************************************************************/ + package com.worlize.gif.events { import flash.events.Event; diff --git a/GifTest/src/GifTest.mxml b/GifTest/src/GifTest.mxml index 03576bd..b654d27 100644 --- a/GifTest/src/GifTest.mxml +++ b/GifTest/src/GifTest.mxml @@ -1,4 +1,20 @@ + +