Home
last modified time | relevance | path

Searched refs:AspectRatioType (Results 1 – 4 of 4) sorted by relevance

/external/libwebm/webm_parser/tests/
Dvideo_parser_test.cc15 using webm::AspectRatioType;
73 EXPECT_EQ(AspectRatioType::kFreeResizing, video.aspect_ratio_type.value()); in TEST_F()
177 EXPECT_EQ(AspectRatioType::kFreeResizing, video.aspect_ratio_type.value()); in TEST_F()
303 EXPECT_EQ(AspectRatioType::kKeep, video.aspect_ratio_type.value()); in TEST_F()
370 EXPECT_EQ(AspectRatioType::kFreeResizing, video.aspect_ratio_type.value()); in TEST_F()
437 EXPECT_EQ(AspectRatioType::kFreeResizing, video.aspect_ratio_type.value()); in TEST_F()
/external/libwebm/webm_parser/src/
Dvideo_parser.h59 MakeChild<IntParser<AspectRatioType>>(Id::kAspectRatioType, in VideoParser()
/external/libwebm/webm_parser/include/webm/
Ddom_types.h1102 enum class AspectRatioType : std::uint64_t { enum
1186 Element<AspectRatioType> aspect_ratio_type{AspectRatioType::kFreeResizing};
/external/libwebm/webm_parser/demo/
Ddemo.cc534 std::ostream& operator<<(std::ostream& os, AspectRatioType value) { in operator <<()
536 case AspectRatioType::kFreeResizing: in operator <<()
538 case AspectRatioType::kKeep: in operator <<()
540 case AspectRatioType::kFixed: in operator <<()