#include <utility>
#include <iostream>
#include <memory>
#include <type_traits>
#include "ffmpeg.h"
Go to the source code of this file.
|
template<typename T > |
auto | av::operator/ (T num, Rational value) -> std::enable_if_t< std::is_floating_point_v< T >||std::is_integral_v< T >, Rational > |
|
template<typename T > |
auto | av::operator/ (Rational value, T num) -> std::enable_if_t< std::is_floating_point_v< T >||std::is_integral_v< T >, Rational > |
|
std::ostream & | av::operator<< (std::ostream &stream, const Rational &value) |
|
std::istream & | av::operator>> (std::istream &stream, Rational &value) |
|
◆ AV_TIME_BASE_Q_CPP
#define AV_TIME_BASE_Q_CPP AVRational{1, AV_TIME_BASE} |