Skip to content

Commit 15313a7

Browse files
committed
Licensed under the apache license 2.0
1 parent f17b3c9 commit 15313a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+976
-1589
lines changed

LICENSE

+201-504
Large diffs are not rendered by default.

adapter/sink_alsa_wrapper.c

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <stdlib.h>

adapter/sink_alsa_wrapper.h

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#ifndef _LITEPLAYER_ADAPTER_ALSA_WRAPPER_H_
2216
#define _LITEPLAYER_ADAPTER_ALSA_WRAPPER_H_

adapter/sink_opensles_wrapper.cpp

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <stdint.h>

adapter/sink_opensles_wrapper.h

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#ifndef _LITEPLAYER_ADAPTER_OPENSLES_WRAPPER_H_
2216
#define _LITEPLAYER_ADAPTER_OPENSLES_WRAPPER_H_

adapter/sink_wave_wrapper.c

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <stdint.h>

adapter/sink_wave_wrapper.h

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#ifndef _LITEPLAYER_ADAPTER_WAVE_WRAPPER_H_
2216
#define _LITEPLAYER_ADAPTER_WAVE_WRAPPER_H_

adapter/source_file_wrapper.c

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <string.h>

adapter/source_file_wrapper.h

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#ifndef _LITEPLAYER_ADAPTER_FILE_WRAPPER_H_
2216
#define _LITEPLAYER_ADAPTER_FILE_WRAPPER_H_

adapter/source_httpclient_wrapper.c

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <string.h>

adapter/source_httpclient_wrapper.h

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2019-2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#ifndef _LITEPLAYER_ADAPTER_HTTPCLIENT_WRAPPER_H_
2216
#define _LITEPLAYER_ADAPTER_HTTPCLIENT_WRAPPER_H_

builds/esp32/components/liteplayer_adapter/sink_esp32_i2s_wrapper.c

+13-19
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
/*
2-
* Copyright (c) 2019-2021 Qinglong <[email protected]>
3-
*
4-
* This file is part of Liteplayer
5-
* (see https://github.com/sepnic/liteplayer_priv).
6-
*
7-
* This program is free software: you can redistribute it and/or modify
8-
* it under the terms of the GNU Lesser General Public License as published
9-
* by the Free Software Foundation, either version 2.1 of the License, or
10-
* (at your option) any later version.
11-
*
12-
* This program is distributed in the hope that it will be useful,
13-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15-
* GNU Lesser General Public License for more details.
16-
*
17-
* You should have received a copy of the GNU Lesser General Public License
18-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19-
*/
1+
// Copyright (c) 2021 Qinglong<[email protected]>
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
2014

2115
#include <stdio.h>
2216
#include <stdint.h>

0 commit comments

Comments
 (0)