Searched defs:rotationDegrees (Results 1 - 8 of 8) 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/cmds/stagefright/
H A Dmuxer.cpp59 int rotationDegrees) {
145 muxer->setOrientationHint(rotationDegrees);
215 int rotationDegrees = 0; local
255 rotationDegrees = atoi(optarg);
300 enableTrim, trimStartTimeMs, trimEndTimeMs, rotationDegrees);
50 muxing( const android::sp<android::ALooper> &looper, const char *path, bool useAudio, bool useVideo, const char *outputFileName, bool enableTrim, int trimStartTimeMs, int trimEndTimeMs, int rotationDegrees) argument
/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.cpp1887 uint32_t rotationDegrees; local
1892 rotationDegrees = 0;
1894 rotationDegrees = 90;
1896 rotationDegrees = 270;
1898 rotationDegrees = 180;
1901 rotationDegrees = 0;
1904 if (rotationDegrees != 0) {
1905 mLastTrack->meta->setInt32(kKeyRotation, rotationDegrees);
H A DOMXCodec.cpp1679 int32_t rotationDegrees; local
1680 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
1681 rotationDegrees = 0;
1685 switch (rotationDegrees) {
4513 int32_t rotationDegrees; local
4514 if (mSource->getFormat()->findInt32(kKeyRotation, &rotationDegrees)) {
4515 mOutputFormat->setInt32(kKeyRotation, rotationDegrees);
H A DMPEG4Writer.cpp1705 int32_t rotationDegrees; local
1706 if (!mIsAudio && params && params->findInt32(kKeyRotation, &rotationDegrees)) {
1707 mRotation = rotationDegrees;

Completed in 4038 milliseconds