• Home
  • Raw
  • Download

Lines Matching refs:sProfiles

32 MediaProfiles *sProfiles = NULL;  variable
42 if (sProfiles == NULL) { in android_media_MediaProfiles_native_init()
43 sProfiles = MediaProfiles::getInstance(); in android_media_MediaProfiles_native_init()
51 return (jint) sProfiles->getOutputFileFormats().size(); in android_media_MediaProfiles_native_get_num_file_formats()
58 Vector<output_format> formats = sProfiles->getOutputFileFormats(); in android_media_MediaProfiles_native_get_file_format()
71 return sProfiles->getVideoEncoders().size(); in android_media_MediaProfiles_native_get_num_video_encoders()
79 Vector<video_encoder> encoders = sProfiles->getVideoEncoders(); in android_media_MediaProfiles_native_get_video_encoder_cap()
87 int minBitRate = sProfiles->getVideoEncoderParamByName("enc.vid.bps.min", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
88 int maxBitRate = sProfiles->getVideoEncoderParamByName("enc.vid.bps.max", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
89 int minFrameRate = sProfiles->getVideoEncoderParamByName("enc.vid.fps.min", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
90 int maxFrameRate = sProfiles->getVideoEncoderParamByName("enc.vid.fps.max", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
91 int minFrameWidth = sProfiles->getVideoEncoderParamByName("enc.vid.width.min", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
92 int maxFrameWidth = sProfiles->getVideoEncoderParamByName("enc.vid.width.max", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
93 int minFrameHeight = sProfiles->getVideoEncoderParamByName("enc.vid.height.min", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
94 int maxFrameHeight = sProfiles->getVideoEncoderParamByName("enc.vid.height.max", encoder); in android_media_MediaProfiles_native_get_video_encoder_cap()
123 return (jint) sProfiles->getAudioEncoders().size(); in android_media_MediaProfiles_native_get_num_audio_encoders()
131 Vector<audio_encoder> encoders = sProfiles->getAudioEncoders(); in android_media_MediaProfiles_native_get_audio_encoder_cap()
139 int minBitRate = sProfiles->getAudioEncoderParamByName("enc.aud.bps.min", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
140 int maxBitRate = sProfiles->getAudioEncoderParamByName("enc.aud.bps.max", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
141 int minSampleRate = sProfiles->getAudioEncoderParamByName("enc.aud.hz.min", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
142 int maxSampleRate = sProfiles->getAudioEncoderParamByName("enc.aud.hz.max", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
143 int minChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.min", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
144 int maxChannels = sProfiles->getAudioEncoderParamByName("enc.aud.ch.max", encoder); in android_media_MediaProfiles_native_get_audio_encoder_cap()
187 int duration = sProfiles->getCamcorderProfileParamByName("duration", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
188 int fileFormat = sProfiles->getCamcorderProfileParamByName("file.format", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
189 int videoCodec = sProfiles->getCamcorderProfileParamByName("vid.codec", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
190 int videoBitRate = sProfiles->getCamcorderProfileParamByName("vid.bps", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
191 int videoFrameRate = sProfiles->getCamcorderProfileParamByName("vid.fps", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
192 int videoFrameWidth = sProfiles->getCamcorderProfileParamByName("vid.width", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
193 int videoFrameHeight = sProfiles->getCamcorderProfileParamByName("vid.height", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
194 int audioCodec = sProfiles->getCamcorderProfileParamByName("aud.codec", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
195 int audioBitRate = sProfiles->getCamcorderProfileParamByName("aud.bps", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
196 int audioSampleRate = sProfiles->getCamcorderProfileParamByName("aud.hz", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
197 int audioChannels = sProfiles->getCamcorderProfileParamByName("aud.ch", id, q); in android_media_MediaProfiles_native_get_camcorder_profile()
236 return sProfiles->hasCamcorderProfile(id, q) ? JNI_TRUE : JNI_FALSE; in android_media_MediaProfiles_native_has_camcorder_profile()
243 return (jint) sProfiles->getVideoDecoders().size(); in android_media_MediaProfiles_native_get_num_video_decoders()
251 Vector<video_decoder> decoders = sProfiles->getVideoDecoders(); in android_media_MediaProfiles_native_get_video_decoder_type()
265 return (jint) sProfiles->getAudioDecoders().size(); in android_media_MediaProfiles_native_get_num_audio_decoders()
273 Vector<audio_decoder> decoders = sProfiles->getAudioDecoders(); in android_media_MediaProfiles_native_get_audio_decoder_type()
289 return (jint) sProfiles->getImageEncodingQualityLevels(cameraId).size(); in android_media_MediaProfiles_native_get_num_image_encoding_quality_levels()
297 Vector<int> levels = sProfiles->getImageEncodingQualityLevels(cameraId); in android_media_MediaProfiles_native_get_image_encoding_quality_level()