| 304 | } |
| 305 | |
| 306 | AVColorSpace AVStreamWrapper::getColorspace() |
| 307 | { |
| 308 | this->update(); |
| 309 | if (this->libVer.avformat.major <= 56 || !this->codecpar) |
| 310 | return this->codec.getColorspace(); |
| 311 | return this->codecpar.getColorspace(); |
| 312 | } |
| 313 | |
| 314 | AVPixelFormat AVStreamWrapper::getPixelFormat() |
| 315 | { |
no test coverage detected