From c5024a104bfdfea3a88420ecd5600e5384f84a64 Mon Sep 17 00:00:00 2001 From: Andrey Date: Sun, 29 Aug 2021 20:25:52 +0200 Subject: [PATCH] added copyright notice for exoplayer code --- .../DefaultHlsPlaylistParserFactory.java | 15 +++++++++++++++ .../lowlatency/DefaultHlsPlaylistTracker.java | 15 +++++++++++++++ .../xtra/player/lowlatency/HlsManifest.java | 15 +++++++++++++++ .../xtra/player/lowlatency/HlsMediaSource.java | 15 +++++++++++++++ .../xtra/player/lowlatency/HlsPlaylistParser.java | 15 +++++++++++++++ 5 files changed, 75 insertions(+) diff --git a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistParserFactory.java b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistParserFactory.java index 9e2c62d87..9b028d019 100644 --- a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistParserFactory.java +++ b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistParserFactory.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.github.andreyasadchy.xtra.player.lowlatency; import com.google.android.exoplayer2.source.hls.playlist.HlsMasterPlaylist; diff --git a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistTracker.java b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistTracker.java index 9d432a8b6..836922074 100644 --- a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistTracker.java +++ b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/DefaultHlsPlaylistTracker.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.github.andreyasadchy.xtra.player.lowlatency; import android.net.Uri; diff --git a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsManifest.java b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsManifest.java index 2ab23a7ec..8b72cde79 100644 --- a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsManifest.java +++ b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsManifest.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.github.andreyasadchy.xtra.player.lowlatency; import com.google.android.exoplayer2.source.hls.playlist.HlsMasterPlaylist; diff --git a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsMediaSource.java b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsMediaSource.java index bc2a95416..b57ac6567 100644 --- a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsMediaSource.java +++ b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsMediaSource.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.github.andreyasadchy.xtra.player.lowlatency; import android.net.Uri; diff --git a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsPlaylistParser.java b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsPlaylistParser.java index df6209ea2..7c6e0aa15 100644 --- a/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsPlaylistParser.java +++ b/app/src/main/java/com/github/andreyasadchy/xtra/player/lowlatency/HlsPlaylistParser.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2016 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package com.github.andreyasadchy.xtra.player.lowlatency; import android.net.Uri;