Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a476924
Force unsilence record clients on startInput
atneya May 11, 2023
95be9ba
Merge cherrypicks of ['googleplex-android-review.googlesource.com/232…
May 27, 2023
6d96fc6
[2/2] av: Remove restrictions for system audio record
jhenrique09 Mar 24, 2020
75ad0f9
audiopolicy: Disable sonification on WFD sink
Jul 18, 2014
dd9e105
Revert "stagefright: remove Miracast sender code"
vladimiroltean Jan 8, 2019
dc368f8
Revert "Removed unused class and its test"
vladimiroltean Jan 9, 2019
02c20a1
libstagefright: Remove libmediaextractor dependency
adithya2306 Dec 13, 2019
cba0c42
libstagefright_wfd: compilation fixes
vladimiroltean Jan 8, 2019
76a59fc
stagefright: Fix SurfaceMediaSource getting handle from wrong positio…
May 11, 2017
2c7d0e1
stagefright: Fix buffer handle retrieval in signalBufferReturned
kholk Apr 30, 2017
61e7ecd
libstagefright_wfd: video encoder does not actually release MediaBuff…
vladimiroltean Jan 20, 2019
debb801
audioflinger: Fix audio for WifiDisplay
myfluxi Apr 16, 2020
dcd886d
Partial revert "Move unused classes out of stagefright foundataion"
nicorg2515 Nov 1, 2019
1f8feaf
Add group audio to vendor.media.omx service
lweiss-fairphone Feb 2, 2022
c6774d8
codec2: add smoothfactor when checking n-th work
Aug 5, 2021
b329a38
Revert "Remove libavservices_minijail_vendor"
mikeNG Sep 3, 2022
815c302
WifiDisplaySource: raise supported resolution to 1920x1080p60
jjpprrrr Nov 13, 2021
4f8c2ff
Camera: Skip stream size check for whitelisted apps
ArianK16a Oct 11, 2022
6228e1e
Camera: Avoid roundBufferDimensionsNearest also for HAL_PIXEL_FORMAT_…
SGCMarkus Oct 9, 2022
afd6b4d
Revert "Revert "Remove libavservices_minijail_vendor""
basamaryan Nov 20, 2022
b16f9f8
av: fix callinguid
kutemeikito Jun 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/media/IHDCP.h
2 changes: 1 addition & 1 deletion media/codec2/sfplugin/CCodecBufferChannel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2176,7 +2176,7 @@ PipelineWatcher::Clock::duration CCodecBufferChannel::elapsed() {
size_t outputDelay = mOutput.lock()->outputDelay;
{
Mutexed<Input>::Locked input(mInput);
n = input->inputDelay + input->pipelineDelay + outputDelay;
n = input->inputDelay + input->pipelineDelay + outputDelay + kSmoothnessFactor;
}
return mPipelineWatcher.lock()->elapsed(PipelineWatcher::Clock::now(), n);
}
Expand Down
4 changes: 2 additions & 2 deletions media/libaaudio/src/utility/AAudioUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ audio_flags_mask_t AAudioConvert_allowCapturePolicyToAudioFlagsMask(
aaudio_spatialization_behavior_t spatializationBehavior,
bool isContentSpatialized) {
audio_flags_mask_t flagsMask = AUDIO_FLAG_NONE;
switch (policy) {
/*switch (policy) {
case AAUDIO_UNSPECIFIED:
case AAUDIO_ALLOW_CAPTURE_BY_ALL:
// flagsMask is not modified
Expand All @@ -254,7 +254,7 @@ audio_flags_mask_t AAudioConvert_allowCapturePolicyToAudioFlagsMask(
default:
ALOGE("%s() 0x%08X unrecognized capture policy", __func__, policy);
// flagsMask is not modified
}
}*/

switch (spatializationBehavior) {
case AAUDIO_UNSPECIFIED:
Expand Down
2 changes: 2 additions & 0 deletions media/libmedia/Android.bp
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ cc_library {
srcs: [
":mediaextractorservice_aidl",
"IDataSource.cpp",
"IHDCP.cpp",
"BufferingSettings.cpp",
"mediaplayer.cpp",
"IMediaHTTPConnection.cpp",
Expand Down Expand Up @@ -371,6 +372,7 @@ cc_library {
"libcamera_client",
"libstagefright_foundation",
"libgui",
"libui",
"libdl",
"libaudioclient",
"libmedia_codeclist",
Expand Down
Loading