-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
96 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,7 @@ | |
* | ||
* @author The Red5 Project | ||
* @author Luke Hubbard, Codegent Ltd ([email protected]) | ||
* @author Paul Gregoire ([email protected]) | ||
*/ | ||
@SuppressWarnings("serial") | ||
public class Input extends BaseInput implements org.red5.io.object.Input { | ||
|
@@ -641,36 +642,36 @@ public ByteArray readByteArray(Type target) { | |
} | ||
|
||
/** | ||
* Read Vector<int> object. This is not supported by the AMF0 deserializer. | ||
* Read Vector<int> object. This is not supported by the AMF0 deserializer. | ||
* | ||
* @return Vector<Integer> object | ||
* @return Vector<Integer> object | ||
*/ | ||
public Vector<Integer> readVectorInt() { | ||
throw new RuntimeException("Vector objects not supported with AMF0"); | ||
} | ||
|
||
/** | ||
* Read Vector<Long> object. This is not supported by the AMF0 deserializer. | ||
* Read Vector<Long> object. This is not supported by the AMF0 deserializer. | ||
* | ||
* @return Vector<Long> object | ||
* @return Vector<Long> object | ||
*/ | ||
public Vector<Long> readVectorUInt() { | ||
throw new RuntimeException("Vector objects not supported with AMF0"); | ||
} | ||
|
||
/** | ||
* Read Vector<Number> object. This is not supported by the AMF0 deserializer. | ||
* Read Vector<Number> object. This is not supported by the AMF0 deserializer. | ||
* | ||
* @return Vector<Double> object | ||
* @return Vector<Double> object | ||
*/ | ||
public Vector<Double> readVectorNumber() { | ||
throw new RuntimeException("Vector objects not supported with AMF0"); | ||
} | ||
|
||
/** | ||
* Read Vector<Object> object. This is not supported by the AMF0 deserializer. | ||
* Read Vector<Object> object. This is not supported by the AMF0 deserializer. | ||
* | ||
* @return Vector<Object> object | ||
* @return Vector<Object> object | ||
*/ | ||
public Vector<Object> readVectorObject() { | ||
throw new RuntimeException("Vector objects not supported with AMF0"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,18 +25,17 @@ | |
* Cue point is metadata marker used to control and accompany video playback with client-side application | ||
* events. Each cue point have at least one attribute, timestamp. Timestamp specifies position of cue point in | ||
* FLV file. | ||
* | ||
* <p>Cue points are usually used as event triggers down video flow or navigation points in a file. Cue points are | ||
* <br> | ||
* Cue points are usually used as event triggers down video flow or navigation points in a file. Cue points are | ||
* of two types: | ||
* <ul> | ||
* <li>Embedded into FLV or SWF</li> | ||
* <li>External, or added on fly (e.g. with FLVPlayback component or ActionScript) on both server-side and client-side.</li> | ||
* </ul> | ||
* </p> | ||
* | ||
* <p>To add cue point trigger event listener at client-side in Flex/Flash application, use NetStream.onCuePoint event | ||
* handler.</p> | ||
* | ||
* <br> | ||
* To add cue point trigger event listener at client-side in Flex/Flash application, use NetStream.onCuePoint event | ||
* handler. | ||
* | ||
* @author The Red5 Project | ||
* @author Dominick Accattato ([email protected]) | ||
* @author Luke Hubbard, Codegent Ltd ([email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.