Browse Source
HWDecoderUtil.getAudioOutputFromDevice() can only return OPENSLES or ALL.merge-requests/1648/merge
8 changed files with 75 additions and 39 deletions
@ -1,24 +0,0 @@ |
|||
package org.videolan.resources |
|||
|
|||
import androidx.test.platform.app.InstrumentationRegistry |
|||
import androidx.test.ext.junit.runners.AndroidJUnit4 |
|||
|
|||
import org.junit.Test |
|||
import org.junit.runner.RunWith |
|||
|
|||
import org.junit.Assert.* |
|||
|
|||
/** |
|||
* Instrumented test, which will execute on an Android device. |
|||
* |
|||
* See [testing documentation](http://d.android.com/tools/testing). |
|||
*/ |
|||
@RunWith(AndroidJUnit4::class) |
|||
class ExampleInstrumentedTest { |
|||
@Test |
|||
fun useAppContext() { |
|||
// Context of the app under test. |
|||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext |
|||
assertEquals("org.videolan.resources", appContext.packageName) |
|||
} |
|||
} |
|||
@ -0,0 +1,29 @@ |
|||
package org.videolan.vlc |
|||
|
|||
/* |
|||
* ************************************************************************ |
|||
* Vlc3.kt |
|||
* ************************************************************************* |
|||
* Copyright © 2022 VLC authors and VideoLAN |
|||
* Author: Nicolas POMEPUY |
|||
* This program is free software; you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation; either version 2 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program; if not, write to the Free Software |
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|||
* ************************************************************************** |
|||
* |
|||
* |
|||
*/ |
|||
|
|||
|
|||
|
|||
fun isVLC4() = false |
|||
@ -0,0 +1,28 @@ |
|||
package org.videolan.vlc |
|||
|
|||
/* |
|||
* ************************************************************************ |
|||
* Verlc3.kt |
|||
* ************************************************************************* |
|||
* Copyright © 2022 VLC authors and VideoLAN |
|||
* Author: Nicolas POMEPUY |
|||
* This program is free software; you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation; either version 2 of the License, or |
|||
* (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program; if not, write to the Free Software |
|||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
|||
* ************************************************************************** |
|||
* |
|||
* |
|||
*/ |
|||
|
|||
|
|||
fun isVLC4() = true |
|||
Loading…
Reference in new issue