修复264Track获取宽高错误的bug

This commit is contained in:
xiongziliang 2019-01-21 12:02:44 +08:00
parent 950dfb15fd
commit f3c7124939

View File

@ -181,7 +181,7 @@ public:
* @return
*/
int getVideoHeight() const override{
return _width;
return _height ;
}
/**
@ -189,7 +189,7 @@ public:
* @return
*/
int getVideoWidth() const override{
return _height;
return _width;
}
/**