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

This commit is contained in:
xiongziliang 2019-01-21 12:02:44 +08:00
parent 950dfb15fd
commit f3c7124939
1 changed files with 2 additions and 2 deletions

View File

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