Searched defs:rotationDegrees (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp59 int32_t rotationDegrees; local
60 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
61 rotationDegrees = 0;
116 switch (rotationDegrees) {
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp595 int32_t rotationDegrees; local
596 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
597 rotationDegrees = 0;
600 if (rotationDegrees == 90 || rotationDegrees == 270) {
H A DPreviewPlayer.cpp1718 int32_t rotationDegrees; local
1720 kKeyRotation, &rotationDegrees)) {
1721 rotationDegrees = 0;
1724 if (rotationDegrees == 90 || rotationDegrees == 270) {
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp122 int32_t rotationDegrees)
124 applyRotation(rotationDegrees);
150 void applyRotation(int32_t rotationDegrees) { argument
152 switch (rotationDegrees) {
1058 int32_t rotationDegrees; local
1060 kKeyRotation, &rotationDegrees)) {
1061 rotationDegrees = 0;
1064 if (rotationDegrees == 90 || rotationDegrees == 270) {
1090 int32_t rotationDegrees; local
120 AwesomeNativeWindowRenderer( const sp<ANativeWindow> &nativeWindow, int32_t rotationDegrees) argument
[all...]
H A DMPEG4Extractor.cpp1524 uint32_t rotationDegrees; local
1529 rotationDegrees = 0;
1531 rotationDegrees = 90;
1533 rotationDegrees = 270;
1535 rotationDegrees = 180;
1538 rotationDegrees = 0;
1541 if (rotationDegrees != 0) {
1542 mLastTrack->meta->setInt32(kKeyRotation, rotationDegrees);
H A DOMXCodec.cpp1673 int32_t rotationDegrees; local
1674 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
1675 rotationDegrees = 0;
1679 switch (rotationDegrees) {
4507 int32_t rotationDegrees; local
4508 if (mSource->getFormat()->findInt32(kKeyRotation, &rotationDegrees)) {
4509 mOutputFormat->setInt32(kKeyRotation, rotationDegrees);
H A DMPEG4Writer.cpp1598 int32_t rotationDegrees; local
1599 if (!mIsAudio && params && params->findInt32(kKeyRotation, &rotationDegrees)) {
1600 mRotation = rotationDegrees;

Completed in 755 milliseconds