Home
last modified time | relevance | path

Searched refs:pose_pitch (Results 1 – 23 of 23) sorted by relevance

/external/libwebm/webm_parser/tests/
Dprojection_parser_test.cc40 EXPECT_FALSE(projection.pose_pitch.is_present()); in TEST_F()
41 EXPECT_EQ(0.0, projection.pose_pitch.value()); in TEST_F()
78 EXPECT_TRUE(projection.pose_pitch.is_present()); in TEST_F()
79 EXPECT_EQ(0.0, projection.pose_pitch.value()); in TEST_F()
122 EXPECT_TRUE(projection.pose_pitch.is_present()); in TEST_F()
123 EXPECT_EQ(2.0, projection.pose_pitch.value()); in TEST_F()
/external/libwebm/webm_parser/src/
Dprojection_parser.h33 &Projection::pose_pitch), in ProjectionParser()
/external/libwebm/webm_parser/include/webm/
Ddom_types.h944 Element<double> pose_pitch; member
957 pose_yaw == other.pose_yaw && pose_pitch == other.pose_pitch &&
/external/libwebm/
Dmkvparser_sample.cc315 if (projection->pose_pitch != mkvparser::Projection::kValueNotPresent) in main()
316 printf("\t\t\tProjectionPosePitch: %f\n", projection->pose_pitch); in main()
Dmkvmuxer_sample.cc182 if (parser_projection.pose_pitch != kValueNotPresent) in CopyVideoProjection()
183 muxer_projection->set_pose_pitch(parser_projection.pose_pitch); in CopyVideoProjection()
Dwebm_info.cc634 if (projection->pose_pitch != kValueNotPresent) in OutputTracks()
636 indent->indent_str().c_str(), projection->pose_pitch); in OutputTracks()
/external/libwebm/mkvmuxer/
Dmkvmuxer.h634 float pose_pitch() const { return pose_pitch_; } in pose_pitch() function
635 void set_pose_pitch(float pose_pitch) { pose_pitch_ = pose_pitch; } in set_pose_pitch() argument
Dmkvmuxer.cc1613 projection_ptr->set_pose_pitch(projection.pose_pitch()); in SetProjection()
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h634 float pose_pitch() const { return pose_pitch_; } in pose_pitch() function
635 void set_pose_pitch(float pose_pitch) { pose_pitch_ = pose_pitch; } in set_pose_pitch() argument
Dmkvmuxer.cc1613 projection_ptr->set_pose_pitch(projection.pose_pitch()); in SetProjection()
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h634 float pose_pitch() const { return pose_pitch_; } in pose_pitch() function
635 void set_pose_pitch(float pose_pitch) { pose_pitch_ = pose_pitch; } in set_pose_pitch() argument
Dmkvmuxer.cc1613 projection_ptr->set_pose_pitch(projection.pose_pitch()); in SetProjection()
/external/libvpx/libwebm/mkvparser/
Dmkvparser.h490 pose_pitch(kValueNotPresent), in Projection()
500 float pose_pitch; member
Dmkvparser.cc5264 projection_ptr->pose_pitch = static_cast<float>(value); in Parse()
/external/libaom/libaom/third_party/libwebm/mkvparser/
Dmkvparser.h490 pose_pitch(kValueNotPresent), in Projection()
500 float pose_pitch; member
Dmkvparser.cc5262 projection_ptr->pose_pitch = static_cast<float>(value); in Parse()
/external/libwebm/mkvparser/
Dmkvparser.h490 pose_pitch(kValueNotPresent), in Projection()
500 float pose_pitch; member
Dmkvparser.cc5264 projection_ptr->pose_pitch = static_cast<float>(value); in Parse()
/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.h490 pose_pitch(kValueNotPresent), in Projection()
500 float pose_pitch; member
Dmkvparser.cc5262 projection_ptr->pose_pitch = static_cast<float>(value); in Parse()
/external/libwebm/testing/
Dmkvmuxer_tests.cc931 EXPECT_FLOAT_EQ(muxer_proj.pose_pitch(), parser_proj->pose_pitch); in TEST_F()
Dmkvparser_tests.cc662 EXPECT_FLOAT_EQ(2, projection->pose_pitch); in TEST_F()
/external/libwebm/webm_parser/demo/
Ddemo.cc758 PrintMandatoryElement("ProjectionPosePitch", projection.pose_pitch); in PrintMasterElement()