mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-21 17:17:49 +08:00
修复264Track获取宽高错误的bug
This commit is contained in:
parent
950dfb15fd
commit
f3c7124939
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user