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.cpp596 int32_t rotationDegrees; local
597 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
598 rotationDegrees = 0;
601 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.cpp128 int32_t rotationDegrees)
130 applyRotation(rotationDegrees);
156 void applyRotation(int32_t rotationDegrees) { argument
158 switch (rotationDegrees) {
1157 int32_t rotationDegrees; local
1159 kKeyRotation, &rotationDegrees)) {
1160 rotationDegrees = 0;
1163 if (rotationDegrees == 90 || rotationDegrees == 270) {
1189 int32_t rotationDegrees; local
126 AwesomeNativeWindowRenderer( const sp<ANativeWindow> &nativeWindow, int32_t rotationDegrees) argument
[all...]
H A DMPEG4Extractor.cpp1973 uint32_t rotationDegrees; local
1978 rotationDegrees = 0;
1980 rotationDegrees = 90;
1982 rotationDegrees = 270;
1984 rotationDegrees = 180;
1987 rotationDegrees = 0;
1990 if (rotationDegrees != 0) {
1991 mLastTrack->meta->setInt32(kKeyRotation, rotationDegrees);
H A DOMXCodec.cpp1677 int32_t rotationDegrees; local
1678 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
1679 rotationDegrees = 0;
1683 switch (rotationDegrees) {
4511 int32_t rotationDegrees; local
4512 if (mSource->getFormat()->findInt32(kKeyRotation, &rotationDegrees)) {
4513 mOutputFormat->setInt32(kKeyRotation, rotationDegrees);
H A DMPEG4Writer.cpp1707 int32_t rotationDegrees; local
1708 if (!mIsAudio && params && params->findInt32(kKeyRotation, &rotationDegrees)) {
1709 mRotation = rotationDegrees;

Completed in 186 milliseconds