forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormat.cpp
60 lines (46 loc) · 1.39 KB
/
Format.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <catch2/catch.hpp>
#include <vector>
#ifdef __cpp_lib_print
# include <format>
#endif
#include "format.h"
#include "codec.h"
#include "ffmpeg.h"
#ifdef _MSC_VER
# pragma warning (disable : 4702) // Disable warning: unreachable code
#endif
TEST_CASE("Format Core functionality", "[Format]")
{
SECTION("guessEncodingCodec()") {
auto out_format = av::guessOutputFormat("matroska");
CHECK(out_format.raw());
auto codec = av::guessEncodingCodec(out_format, "matroska", "out.mkv", nullptr, AVMEDIA_TYPE_VIDEO);
CHECK(codec.raw());
}
SECTION("setFormat") {
auto tmp_format = av::guessOutputFormat("matroska");
CHECK(tmp_format.raw());
av::OutputFormat of;
of.setFormat(tmp_format.raw());
CHECK(tmp_format.raw() == of.raw());
}
#ifdef __cpp_lib_print
SECTION("std::format formatter")
{
{
auto const format = av::guessOutputFormat("matroska");
auto str = std::format("{}", format);
CHECK(str == "matroska");
str = std::format("{:l}", format);
CHECK(str == "Matroska");
}
{
av::InputFormat format {"matroska"};
auto str = std::format("{}", format);
CHECK(str == "matroska,webm");
str = std::format("{:l}", format);
CHECK(str == "Matroska / WebM");
}
}
#endif
}