Searched defs:sarHeight (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_decoder.c885 sarHeight sample aspect ratio width
889 void h264bsdSampleAspectRatio(storage_t *pStorage, u32 *sarWidth, u32 *sarHeight) argument
923 h = pStorage->activeSps->vuiParameters->sarHeight;
936 *sarHeight = h;
H A Dh264bsd_vui.h89 u32 sarHeight; member in struct:__anon655
/frameworks/av/media/libstagefright/
H A DUtils.cpp106 int32_t sarWidth, sarHeight; local
108 && meta->findInt32(kKeySARHeight, &sarHeight)) {
110 msg->setInt32("sar-height", sarHeight);
491 int32_t sarWidth, sarHeight; local
493 && msg->findInt32("sar-height", &sarHeight)) {
495 meta->setInt32(kKeySARHeight, sarHeight);
H A Davc_utils.cpp66 int32_t *sarWidth, int32_t *sarHeight) {
176 if (sarHeight != NULL) {
177 *sarHeight = 0;
209 if (sarHeight != NULL) {
210 *sarHeight = sar_height;
333 int32_t sarWidth, sarHeight; local
335 seqParamSet, &width, &height, &sarWidth, &sarHeight);
381 if (sarWidth > 1 || sarHeight > 1) {
385 meta->setInt32(kKeySARHeight, sarHeight);
395 sarHeight);
63 FindAVCDimensions( const sp<ABuffer> &seqParamSet, int32_t *width, int32_t *height, int32_t *sarWidth, int32_t *sarHeight) argument
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp1313 int32_t sarWidth, sarHeight; local
1315 && inputFormat->findInt32("sar-height", &sarHeight)) {
1316 ALOGV("Sample aspect ratio %d : %d", sarWidth, sarHeight);
1318 displayWidth = (displayWidth * sarWidth) / sarHeight;

Completed in 100 milliseconds