修复264Track获取宽高错误的bug
This commit is contained in:
parent
950dfb15fd
commit
f3c7124939
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue