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) {
1152 int32_t rotationDegrees; local
1154 kKeyRotation, &rotationDegrees)) {
1155 rotationDegrees = 0;
1158 if (rotationDegrees == 90 || rotationDegrees == 270) {
1184 int32_t rotationDegrees; local
126 AwesomeNativeWindowRenderer( const sp<ANativeWindow> &nativeWindow, int32_t rotationDegrees) argument
[all...]
H A DMPEG4Extractor.cpp1953 uint32_t rotationDegrees; local
1958 rotationDegrees = 0;
1960 rotationDegrees = 90;
1962 rotationDegrees = 270;
1964 rotationDegrees = 180;
1967 rotationDegrees = 0;
1970 if (rotationDegrees != 0) {
1971 mLastTrack->meta->setInt32(kKeyRotation, rotationDegrees);
H A DOMXCodec.cpp1683 int32_t rotationDegrees; local
1684 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) {
1685 rotationDegrees = 0;
1689 switch (rotationDegrees) {
4517 int32_t rotationDegrees; local
4518 if (mSource->getFormat()->findInt32(kKeyRotation, &rotationDegrees)) {
4519 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 188 milliseconds