Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59349e6d authored by Henry Fang's avatar Henry Fang Committed by Gerrit Code Review
Browse files

Merge "TvInputHardwareManager: always try patch recreate if null"

parents 892c82e0 c52b5e53
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -976,7 +976,7 @@ class TvInputHardwareManager implements TvInputHal.Callback {
            AudioPortConfig sourceConfig = mAudioSource.activeConfig();
            List<AudioPortConfig> sinkConfigs = new ArrayList<>();
            AudioPatch[] audioPatchArray = new AudioPatch[] { mAudioPatch };
            boolean shouldRecreateAudioPatch = sourceUpdated || sinkUpdated;
            boolean shouldRecreateAudioPatch = sourceUpdated || sinkUpdated || mAudioPatch == null;

            for (AudioDevicePort audioSink : mAudioSink) {
                AudioPortConfig sinkConfig = audioSink.activeConfig();