vcpkg/ports/avcpp/0001-remove-problematic-compound-literal.patch
Charlie Barto 113880e522
[avcpp] Add new port (#17716)
* add avcpp port

* add avcpp

* apply code review comments

* update versions
2021-05-18 16:00:50 -07:00

15 lines
459 B
Diff

diff --git a/src/avutils.h b/src/avutils.h
index 29c4ae0..3bfaf82 100644
--- a/src/avutils.h
+++ b/src/avutils.h
@@ -42,7 +42,7 @@ namespace av {
// Basic FFmpeg constants
constexpr auto NoPts = static_cast<int64_t>(AV_NOPTS_VALUE);
constexpr auto TimeBase = static_cast<int>(AV_TIME_BASE);
-constexpr auto TimeBaseQ = static_cast<AVRational>(AV_TIME_BASE_Q);
+constexpr auto TimeBaseQ = AVRational{1, AV_TIME_BASE};
template<typename R, typename T>