mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-13 03:31:45 +08:00
回滚代码
This commit is contained in:
@@ -76,8 +76,8 @@ inline void AMFValue::init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
AMFValue::AMFValue() :
|
AMFValue::AMFValue(AMFType type) :
|
||||||
_type(AMF_NULL) {
|
_type(type) {
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ public:
|
|||||||
typedef std::map<std::string, AMFValue> mapType;
|
typedef std::map<std::string, AMFValue> mapType;
|
||||||
typedef std::vector<AMFValue> arrayType;
|
typedef std::vector<AMFValue> arrayType;
|
||||||
|
|
||||||
AMFValue();
|
AMFValue(AMFType type = AMF_NULL);
|
||||||
AMFValue(const char *s);
|
AMFValue(const char *s);
|
||||||
AMFValue(const std::string &s);
|
AMFValue(const std::string &s);
|
||||||
AMFValue(double n);
|
AMFValue(double n);
|
||||||
|
|||||||
Reference in New Issue
Block a user