Home
last modified time | relevance | path

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

/external/libwebm/webm_parser/tests/
Dprojection_parser_test.cc43 EXPECT_FALSE(projection.pose_roll.is_present()); in TEST_F()
44 EXPECT_EQ(0.0, projection.pose_roll.value()); in TEST_F()
81 EXPECT_TRUE(projection.pose_roll.is_present()); in TEST_F()
82 EXPECT_EQ(0.0, projection.pose_roll.value()); in TEST_F()
125 EXPECT_TRUE(projection.pose_roll.is_present()); in TEST_F()
126 EXPECT_EQ(4.0, projection.pose_roll.value()); in TEST_F()
/external/libwebm/webm_parser/src/
Dprojection_parser.h35 &Projection::pose_roll)) {} in ProjectionParser()
/external/libwebm/webm_parser/include/webm/
Ddom_types.h949 Element<double> pose_roll; member
958 pose_roll == other.pose_roll;
/external/libwebm/
Dmkvparser_sample.cc317 if (projection->pose_roll != mkvparser::Projection::kValueNotPresent) in main()
318 printf("\t\t\tProjectionPosePitch: %f\n", projection->pose_roll); in main()
Dmkvmuxer_sample.cc184 if (parser_projection.pose_roll != kValueNotPresent) in CopyVideoProjection()
185 muxer_projection->set_pose_roll(parser_projection.pose_roll); in CopyVideoProjection()
Dwebm_info.cc637 if (projection->pose_roll != kValueNotPresent) in OutputTracks()
639 indent->indent_str().c_str(), projection->pose_roll); in OutputTracks()
/external/libwebm/mkvmuxer/
Dmkvmuxer.h636 float pose_roll() const { return pose_roll_; } in pose_roll() function
637 void set_pose_roll(float pose_roll) { pose_roll_ = pose_roll; } in set_pose_roll() argument
Dmkvmuxer.cc1614 projection_ptr->set_pose_roll(projection.pose_roll()); in SetProjection()
/external/libaom/libaom/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h636 float pose_roll() const { return pose_roll_; } in pose_roll() function
637 void set_pose_roll(float pose_roll) { pose_roll_ = pose_roll; } in set_pose_roll() argument
Dmkvmuxer.cc1614 projection_ptr->set_pose_roll(projection.pose_roll()); in SetProjection()
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h636 float pose_roll() const { return pose_roll_; } in pose_roll() function
637 void set_pose_roll(float pose_roll) { pose_roll_ = pose_roll; } in set_pose_roll() argument
Dmkvmuxer.cc1614 projection_ptr->set_pose_roll(projection.pose_roll()); in SetProjection()
/external/libvpx/libwebm/mkvparser/
Dmkvparser.h491 pose_roll(kValueNotPresent) {} in Projection()
501 float pose_roll; member
Dmkvparser.cc5267 projection_ptr->pose_roll = static_cast<float>(value); in Parse()
/external/libaom/libaom/third_party/libwebm/mkvparser/
Dmkvparser.h491 pose_roll(kValueNotPresent) {} in Projection()
501 float pose_roll; member
Dmkvparser.cc5265 projection_ptr->pose_roll = static_cast<float>(value); in Parse()
/external/libwebm/mkvparser/
Dmkvparser.h491 pose_roll(kValueNotPresent) {} in Projection()
501 float pose_roll; member
Dmkvparser.cc5267 projection_ptr->pose_roll = static_cast<float>(value); in Parse()
/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.h491 pose_roll(kValueNotPresent) {} in Projection()
501 float pose_roll; member
Dmkvparser.cc5265 projection_ptr->pose_roll = static_cast<float>(value); in Parse()
/external/libwebm/testing/
Dmkvmuxer_tests.cc932 EXPECT_FLOAT_EQ(muxer_proj.pose_roll(), parser_proj->pose_roll); in TEST_F()
Dmkvparser_tests.cc663 EXPECT_FLOAT_EQ(3, projection->pose_roll); in TEST_F()
/external/libwebm/webm_parser/demo/
Ddemo.cc759 PrintMandatoryElement("ProjectionPoseRoll", projection.pose_roll); in PrintMasterElement()