Home
last modified time | relevance | path

Searched refs:rotationDegrees (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/cmds/stagefright/
Dmuxer.cpp59 int rotationDegrees) { in muxing() argument
145 muxer->setOrientationHint(rotationDegrees); in muxing()
215 int rotationDegrees = 0; in main() local
255 rotationDegrees = atoi(optarg); in main()
300 enableTrim, trimStartTimeMs, trimEndTimeMs, rotationDegrees); in main()
/frameworks/av/media/libstagefright/colorconversion/
DSoftwareRenderer.cpp59 int32_t rotationDegrees; in SoftwareRenderer() local
60 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) { in SoftwareRenderer()
61 rotationDegrees = 0; in SoftwareRenderer()
116 switch (rotationDegrees) { in SoftwareRenderer()
/frameworks/av/libvideoeditor/lvpp/
DNativeWindowRenderer.cpp596 int32_t rotationDegrees; in updateVideoSize() local
597 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) { in updateVideoSize()
598 rotationDegrees = 0; in updateVideoSize()
601 if (rotationDegrees == 90 || rotationDegrees == 270) { in updateVideoSize()
DPreviewPlayer.cpp1718 int32_t rotationDegrees; in notifyVideoSize_l() local
1720 kKeyRotation, &rotationDegrees)) { in notifyVideoSize_l()
1721 rotationDegrees = 0; in notifyVideoSize_l()
1724 if (rotationDegrees == 90 || rotationDegrees == 270) { in notifyVideoSize_l()
/frameworks/av/media/libstagefright/
DAwesomePlayer.cpp128 int32_t rotationDegrees) in AwesomeNativeWindowRenderer()
130 applyRotation(rotationDegrees); in AwesomeNativeWindowRenderer()
156 void applyRotation(int32_t rotationDegrees) { in applyRotation()
158 switch (rotationDegrees) { in applyRotation()
1157 int32_t rotationDegrees; in notifyVideoSize_l() local
1159 kKeyRotation, &rotationDegrees)) { in notifyVideoSize_l()
1160 rotationDegrees = 0; in notifyVideoSize_l()
1163 if (rotationDegrees == 90 || rotationDegrees == 270) { in notifyVideoSize_l()
1189 int32_t rotationDegrees; in initRenderer_l() local
1191 kKeyRotation, &rotationDegrees)) { in initRenderer_l()
[all …]
DMPEG4Extractor.cpp1973 uint32_t rotationDegrees; in parseTrackHeader() local
1978 rotationDegrees = 0; in parseTrackHeader()
1980 rotationDegrees = 90; in parseTrackHeader()
1982 rotationDegrees = 270; in parseTrackHeader()
1984 rotationDegrees = 180; in parseTrackHeader()
1987 rotationDegrees = 0; in parseTrackHeader()
1990 if (rotationDegrees != 0) { in parseTrackHeader()
1991 mLastTrack->meta->setInt32(kKeyRotation, rotationDegrees); in parseTrackHeader()
DOMXCodec.cpp1677 int32_t rotationDegrees; in applyRotation() local
1678 if (!meta->findInt32(kKeyRotation, &rotationDegrees)) { in applyRotation()
1679 rotationDegrees = 0; in applyRotation()
1683 switch (rotationDegrees) { in applyRotation()
4511 int32_t rotationDegrees; in initOutputFormat() local
4512 if (mSource->getFormat()->findInt32(kKeyRotation, &rotationDegrees)) { in initOutputFormat()
4513 mOutputFormat->setInt32(kKeyRotation, rotationDegrees); in initOutputFormat()
DMPEG4Writer.cpp1707 int32_t rotationDegrees; in start() local
1708 if (!mIsAudio && params && params->findInt32(kKeyRotation, &rotationDegrees)) { in start()
1709 mRotation = rotationDegrees; in start()