1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

amf0 utest: add object and ecma array create function.

This commit is contained in:
winlin 2014-03-08 17:04:21 +08:00
parent f4aa2f30c1
commit 34f94a1be3
2 changed files with 14 additions and 0 deletions

View file

@ -34,6 +34,8 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <vector>
class SrsStream;
class SrsAmf0Object;
class SrsAmf0EcmaArray;
/**
* any amf0 value.
@ -91,7 +93,9 @@ public:
static SrsAmf0Any* number(double value = 0.0);
static SrsAmf0Any* null();
static SrsAmf0Any* undefined();
static SrsAmf0Object* object();
static SrsAmf0Any* object_eof();
static SrsAmf0EcmaArray* array();
};
/**