forked from h4tr3d/avcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPixelSampleFormat.cpp
50 lines (42 loc) · 1.12 KB
/
PixelSampleFormat.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
#include <catch2/catch.hpp>
#include <vector>
#ifdef __cpp_lib_print
# include <format>
#endif
#include "pixelformat.h"
#include "sampleformat.h"
#include "ffmpeg.h"
#ifdef _MSC_VER
# pragma warning(disable : 4702) // Disable warning: unreachable code
#endif
TEST_CASE("PixelFormat / SampleFormat", "[PixelFormat][SampleFormat]")
{
#ifdef __cpp_lib_print
SECTION("std::format formatter for PixelFormat")
{
{
av::PixelFormat pixfmt {"yuv420p"};
auto str = std::format("{}", pixfmt);
CHECK(str == "yuv420p");
}
{
av::PixelFormat pixfmt {AV_PIX_FMT_YUV420P};
auto str = std::format("{}", pixfmt);
CHECK(str == "yuv420p");
}
}
SECTION("std::format formatter for SampleFormat")
{
{
av::SampleFormat samplefmt {"s16"};
auto str = std::format("{}", samplefmt);
CHECK(str == "s16");
}
{
av::SampleFormat samplefmt {AV_SAMPLE_FMT_S16};
auto str = std::format("{}", samplefmt);
CHECK(str == "s16");
}
}
#endif
}