| 312 | } |
| 313 | |
| 314 | AVPixelFormat AVStreamWrapper::getPixelFormat() |
| 315 | { |
| 316 | this->update(); |
| 317 | if (this->libVer.avformat.major <= 56 || !this->codecpar) |
| 318 | return this->codec.getPixelFormat(); |
| 319 | return this->codecpar.getPixelFormat(); |
| 320 | } |
| 321 | |
| 322 | QByteArray AVStreamWrapper::getExtradata() |
| 323 | { |
no test coverage detected