| 239 | } |
| 240 | |
| 241 | AVMediaType AVStreamWrapper::getCodecType() |
| 242 | { |
| 243 | this->update(); |
| 244 | if (this->libVer.avformat.major <= 56 || !this->codecpar) |
| 245 | return this->codec.getCodecType(); |
| 246 | return this->codecpar.getCodecType(); |
| 247 | } |
| 248 | |
| 249 | QString AVStreamWrapper::getCodecTypeName() |
| 250 | { |
no test coverage detected