* [PATCH] libdvbpsi: Update to 1.3.3
@ 2021-04-26 12:31 Adolf Belka
2021-04-27 11:05 ` Arne Fitzenreiter
0 siblings, 1 reply; 4+ messages in thread
From: Adolf Belka @ 2021-04-26 12:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3082 bytes --]
- Update from 1.2.0 to 1.3.3
- Update rootfile
- Ran find-dependencies - nothing found
- Changelog
Changes between 1.3.2 and 1.3.3:
* Fix regression in dvbpsi_decoder_psi_section_add() set i_last_section_number
Changes between 1.3.1 and 1.3.2:
* Fix bug in dvbpsi_decoder_psi_section_add() set i_last_section_number
* Fix bug in descriptor 0x8a that prevented it from being parsed properly
* Fix bug in descriptor 0x56 generation with multiple teletext page entries
* Fix bug in descriptor 0x41 correct maximum service count
Changes between 1.3.0 and 1.3.1:
* Fix bugs in table: EIT
* Fix test_dr
Changes between 1.2.0 and 1.3.0:
* New descriptor:
- 0x10 Smoothing Buffer
- 0x11 STD descriptor
- 0x12 IBP descriptor
- 0x1b MPEG-4 video descriptor
- 0x1c MPEG-4 audio descriptor
* Fix bugs in descriptor: 0x02, 0x0a, 0x45, 0x48, 0x50, 0x56, 0x7c
* Fix bugs in table: EIT, NIT
* Fix bugs in demux.c
* Build with mingw32
* Generate descriptors: 0x83, 0xa1
* Documentation fixes:
- tables: NIT
- descriptors: 0xa1
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/libdvbpsi | 11 +++++++++--
lfs/libdvbpsi | 6 +++---
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/config/rootfiles/packages/libdvbpsi b/config/rootfiles/packages/libdvbpsi
index b7b07730e..5fdf15e17 100644
--- a/config/rootfiles/packages/libdvbpsi
+++ b/config/rootfiles/packages/libdvbpsi
@@ -23,8 +23,13 @@
#usr/include/dvbpsi/dr_0d.h
#usr/include/dvbpsi/dr_0e.h
#usr/include/dvbpsi/dr_0f.h
+#usr/include/dvbpsi/dr_10.h
+#usr/include/dvbpsi/dr_11.h
+#usr/include/dvbpsi/dr_12.h
#usr/include/dvbpsi/dr_13.h
#usr/include/dvbpsi/dr_14.h
+#usr/include/dvbpsi/dr_1b.h
+#usr/include/dvbpsi/dr_1c.h
#usr/include/dvbpsi/dr_40.h
#usr/include/dvbpsi/dr_41.h
#usr/include/dvbpsi/dr_42.h
@@ -71,9 +76,11 @@
#usr/include/dvbpsi/sdt.h
#usr/include/dvbpsi/sis.h
#usr/include/dvbpsi/tot.h
+#usr/include/dvbpsi/types
+#usr/include/dvbpsi/types/aac_profile.h
#usr/lib/libdvbpsi.a
#usr/lib/libdvbpsi.la
usr/lib/libdvbpsi.so
-usr/lib/libdvbpsi.so.9
-usr/lib/libdvbpsi.so.9.0.0
+usr/lib/libdvbpsi.so.10
+usr/lib/libdvbpsi.so.10.0.0
#usr/lib/pkgconfig/libdvbpsi.pc
diff --git a/lfs/libdvbpsi b/lfs/libdvbpsi
index 5d7c4ebf4..511303c65 100644
--- a/lfs/libdvbpsi
+++ b/lfs/libdvbpsi
@@ -24,7 +24,7 @@
include Config
-VER = 1.2.0
+VER = 1.3.3
THISAPP = libdvbpsi-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = libdvbpsi
-PAK_VER = 2
+PAK_VER = 3
DEPS =
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 69e38e93c4db4f2a58cbd0b6f9f38228
+$(DL_FILE)_MD5 = 9b556ab08bb62a8bec61f5c1649bc9a8
install : $(TARGET)
--
2.31.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libdvbpsi: Update to 1.3.3
2021-04-26 12:31 [PATCH] libdvbpsi: Update to 1.3.3 Adolf Belka
@ 2021-04-27 11:05 ` Arne Fitzenreiter
2021-04-28 7:08 ` Adolf Belka
0 siblings, 1 reply; 4+ messages in thread
From: Arne Fitzenreiter @ 2021-04-27 11:05 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3373 bytes --]
I think libdvbpsi can save dropped. It was used by videolan client which
we have dropped many years ago because newer versions had too many
dependencies.
Arne
Am 2021-04-26 14:31, schrieb Adolf Belka:
> - Update from 1.2.0 to 1.3.3
> - Update rootfile
> - Ran find-dependencies - nothing found
> - Changelog
> Changes between 1.3.2 and 1.3.3:
> * Fix regression in dvbpsi_decoder_psi_section_add() set
> i_last_section_number
> Changes between 1.3.1 and 1.3.2:
> * Fix bug in dvbpsi_decoder_psi_section_add() set
> i_last_section_number
> * Fix bug in descriptor 0x8a that prevented it from being parsed
> properly
> * Fix bug in descriptor 0x56 generation with multiple teletext page
> entries
> * Fix bug in descriptor 0x41 correct maximum service count
> Changes between 1.3.0 and 1.3.1:
> * Fix bugs in table: EIT
> * Fix test_dr
> Changes between 1.2.0 and 1.3.0:
> * New descriptor:
> - 0x10 Smoothing Buffer
> - 0x11 STD descriptor
> - 0x12 IBP descriptor
> - 0x1b MPEG-4 video descriptor
> - 0x1c MPEG-4 audio descriptor
> * Fix bugs in descriptor: 0x02, 0x0a, 0x45, 0x48, 0x50, 0x56, 0x7c
> * Fix bugs in table: EIT, NIT
> * Fix bugs in demux.c
> * Build with mingw32
> * Generate descriptors: 0x83, 0xa1
> * Documentation fixes:
> - tables: NIT
> - descriptors: 0xa1
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> config/rootfiles/packages/libdvbpsi | 11 +++++++++--
> lfs/libdvbpsi | 6 +++---
> 2 files changed, 12 insertions(+), 5 deletions(-)
>
> diff --git a/config/rootfiles/packages/libdvbpsi
> b/config/rootfiles/packages/libdvbpsi
> index b7b07730e..5fdf15e17 100644
> --- a/config/rootfiles/packages/libdvbpsi
> +++ b/config/rootfiles/packages/libdvbpsi
> @@ -23,8 +23,13 @@
> #usr/include/dvbpsi/dr_0d.h
> #usr/include/dvbpsi/dr_0e.h
> #usr/include/dvbpsi/dr_0f.h
> +#usr/include/dvbpsi/dr_10.h
> +#usr/include/dvbpsi/dr_11.h
> +#usr/include/dvbpsi/dr_12.h
> #usr/include/dvbpsi/dr_13.h
> #usr/include/dvbpsi/dr_14.h
> +#usr/include/dvbpsi/dr_1b.h
> +#usr/include/dvbpsi/dr_1c.h
> #usr/include/dvbpsi/dr_40.h
> #usr/include/dvbpsi/dr_41.h
> #usr/include/dvbpsi/dr_42.h
> @@ -71,9 +76,11 @@
> #usr/include/dvbpsi/sdt.h
> #usr/include/dvbpsi/sis.h
> #usr/include/dvbpsi/tot.h
> +#usr/include/dvbpsi/types
> +#usr/include/dvbpsi/types/aac_profile.h
> #usr/lib/libdvbpsi.a
> #usr/lib/libdvbpsi.la
> usr/lib/libdvbpsi.so
> -usr/lib/libdvbpsi.so.9
> -usr/lib/libdvbpsi.so.9.0.0
> +usr/lib/libdvbpsi.so.10
> +usr/lib/libdvbpsi.so.10.0.0
> #usr/lib/pkgconfig/libdvbpsi.pc
> diff --git a/lfs/libdvbpsi b/lfs/libdvbpsi
> index 5d7c4ebf4..511303c65 100644
> --- a/lfs/libdvbpsi
> +++ b/lfs/libdvbpsi
> @@ -24,7 +24,7 @@
>
> include Config
>
> -VER = 1.2.0
> +VER = 1.3.3
>
> THISAPP = libdvbpsi-$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = libdvbpsi
> -PAK_VER = 2
> +PAK_VER = 3
>
> DEPS =
>
> @@ -44,7 +44,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_MD5 = 69e38e93c4db4f2a58cbd0b6f9f38228
> +$(DL_FILE)_MD5 = 9b556ab08bb62a8bec61f5c1649bc9a8
>
> install : $(TARGET)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libdvbpsi: Update to 1.3.3
2021-04-27 11:05 ` Arne Fitzenreiter
@ 2021-04-28 7:08 ` Adolf Belka
2021-04-28 8:30 ` Michael Tremer
0 siblings, 1 reply; 4+ messages in thread
From: Adolf Belka @ 2021-04-28 7:08 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 3905 bytes --]
Hi Arne,
On 27/04/2021 13:05, Arne Fitzenreiter wrote:
> I think libdvbpsi can save dropped. It was used by videolan client which
> we have dropped many years ago because newer versions had too many dependencies.
Okay, thanks for the input.
I will raise a patch to remove it .
Regards,
Adolf.
>
>
> Arne
>
>
> Am 2021-04-26 14:31, schrieb Adolf Belka:
>> - Update from 1.2.0 to 1.3.3
>> - Update rootfile
>> - Ran find-dependencies - nothing found
>> - Changelog
>> Changes between 1.3.2 and 1.3.3:
>> * Fix regression in dvbpsi_decoder_psi_section_add() set
>> i_last_section_number
>> Changes between 1.3.1 and 1.3.2:
>> * Fix bug in dvbpsi_decoder_psi_section_add() set i_last_section_number
>> * Fix bug in descriptor 0x8a that prevented it from being parsed properly
>> * Fix bug in descriptor 0x56 generation with multiple teletext page entries
>> * Fix bug in descriptor 0x41 correct maximum service count
>> Changes between 1.3.0 and 1.3.1:
>> * Fix bugs in table: EIT
>> * Fix test_dr
>> Changes between 1.2.0 and 1.3.0:
>> * New descriptor:
>> - 0x10 Smoothing Buffer
>> - 0x11 STD descriptor
>> - 0x12 IBP descriptor
>> - 0x1b MPEG-4 video descriptor
>> - 0x1c MPEG-4 audio descriptor
>> * Fix bugs in descriptor: 0x02, 0x0a, 0x45, 0x48, 0x50, 0x56, 0x7c
>> * Fix bugs in table: EIT, NIT
>> * Fix bugs in demux.c
>> * Build with mingw32
>> * Generate descriptors: 0x83, 0xa1
>> * Documentation fixes:
>> - tables: NIT
>> - descriptors: 0xa1
>>
>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>> ---
>> config/rootfiles/packages/libdvbpsi | 11 +++++++++--
>> lfs/libdvbpsi | 6 +++---
>> 2 files changed, 12 insertions(+), 5 deletions(-)
>>
>> diff --git a/config/rootfiles/packages/libdvbpsi
>> b/config/rootfiles/packages/libdvbpsi
>> index b7b07730e..5fdf15e17 100644
>> --- a/config/rootfiles/packages/libdvbpsi
>> +++ b/config/rootfiles/packages/libdvbpsi
>> @@ -23,8 +23,13 @@
>> #usr/include/dvbpsi/dr_0d.h
>> #usr/include/dvbpsi/dr_0e.h
>> #usr/include/dvbpsi/dr_0f.h
>> +#usr/include/dvbpsi/dr_10.h
>> +#usr/include/dvbpsi/dr_11.h
>> +#usr/include/dvbpsi/dr_12.h
>> #usr/include/dvbpsi/dr_13.h
>> #usr/include/dvbpsi/dr_14.h
>> +#usr/include/dvbpsi/dr_1b.h
>> +#usr/include/dvbpsi/dr_1c.h
>> #usr/include/dvbpsi/dr_40.h
>> #usr/include/dvbpsi/dr_41.h
>> #usr/include/dvbpsi/dr_42.h
>> @@ -71,9 +76,11 @@
>> #usr/include/dvbpsi/sdt.h
>> #usr/include/dvbpsi/sis.h
>> #usr/include/dvbpsi/tot.h
>> +#usr/include/dvbpsi/types
>> +#usr/include/dvbpsi/types/aac_profile.h
>> #usr/lib/libdvbpsi.a
>> #usr/lib/libdvbpsi.la
>> usr/lib/libdvbpsi.so
>> -usr/lib/libdvbpsi.so.9
>> -usr/lib/libdvbpsi.so.9.0.0
>> +usr/lib/libdvbpsi.so.10
>> +usr/lib/libdvbpsi.so.10.0.0
>> #usr/lib/pkgconfig/libdvbpsi.pc
>> diff --git a/lfs/libdvbpsi b/lfs/libdvbpsi
>> index 5d7c4ebf4..511303c65 100644
>> --- a/lfs/libdvbpsi
>> +++ b/lfs/libdvbpsi
>> @@ -24,7 +24,7 @@
>>
>> include Config
>>
>> -VER = 1.2.0
>> +VER = 1.3.3
>>
>> THISAPP = libdvbpsi-$(VER)
>> DL_FILE = $(THISAPP).tar.bz2
>> @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
>> DIR_APP = $(DIR_SRC)/$(THISAPP)
>> TARGET = $(DIR_INFO)/$(THISAPP)
>> PROG = libdvbpsi
>> -PAK_VER = 2
>> +PAK_VER = 3
>>
>> DEPS =
>>
>> @@ -44,7 +44,7 @@ objects = $(DL_FILE)
>>
>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>>
>> -$(DL_FILE)_MD5 = 69e38e93c4db4f2a58cbd0b6f9f38228
>> +$(DL_FILE)_MD5 = 9b556ab08bb62a8bec61f5c1649bc9a8
>>
>> install : $(TARGET)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libdvbpsi: Update to 1.3.3
2021-04-28 7:08 ` Adolf Belka
@ 2021-04-28 8:30 ` Michael Tremer
0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2021-04-28 8:30 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 4233 bytes --]
Cool.
I can confirm that this package is not used by anything:
root(a)michael:/build/ipfire-2.x# ./make.sh find-dependencies libdvbpsi.so.10
root(a)michael:/build/ipfire-2.x#
Adolf, thank you for submitting a patch :)
Do we have more that we can simply drop because it is no longer used?
-Michael
> On 28 Apr 2021, at 08:08, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> Hi Arne,
>
> On 27/04/2021 13:05, Arne Fitzenreiter wrote:
>> I think libdvbpsi can save dropped. It was used by videolan client which
>> we have dropped many years ago because newer versions had too many dependencies.
> Okay, thanks for the input.
> I will raise a patch to remove it .
>
> Regards,
> Adolf.
>> Arne
>> Am 2021-04-26 14:31, schrieb Adolf Belka:
>>> - Update from 1.2.0 to 1.3.3
>>> - Update rootfile
>>> - Ran find-dependencies - nothing found
>>> - Changelog
>>> Changes between 1.3.2 and 1.3.3:
>>> * Fix regression in dvbpsi_decoder_psi_section_add() set
>>> i_last_section_number
>>> Changes between 1.3.1 and 1.3.2:
>>> * Fix bug in dvbpsi_decoder_psi_section_add() set i_last_section_number
>>> * Fix bug in descriptor 0x8a that prevented it from being parsed properly
>>> * Fix bug in descriptor 0x56 generation with multiple teletext page entries
>>> * Fix bug in descriptor 0x41 correct maximum service count
>>> Changes between 1.3.0 and 1.3.1:
>>> * Fix bugs in table: EIT
>>> * Fix test_dr
>>> Changes between 1.2.0 and 1.3.0:
>>> * New descriptor:
>>> - 0x10 Smoothing Buffer
>>> - 0x11 STD descriptor
>>> - 0x12 IBP descriptor
>>> - 0x1b MPEG-4 video descriptor
>>> - 0x1c MPEG-4 audio descriptor
>>> * Fix bugs in descriptor: 0x02, 0x0a, 0x45, 0x48, 0x50, 0x56, 0x7c
>>> * Fix bugs in table: EIT, NIT
>>> * Fix bugs in demux.c
>>> * Build with mingw32
>>> * Generate descriptors: 0x83, 0xa1
>>> * Documentation fixes:
>>> - tables: NIT
>>> - descriptors: 0xa1
>>>
>>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>> ---
>>> config/rootfiles/packages/libdvbpsi | 11 +++++++++--
>>> lfs/libdvbpsi | 6 +++---
>>> 2 files changed, 12 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/config/rootfiles/packages/libdvbpsi
>>> b/config/rootfiles/packages/libdvbpsi
>>> index b7b07730e..5fdf15e17 100644
>>> --- a/config/rootfiles/packages/libdvbpsi
>>> +++ b/config/rootfiles/packages/libdvbpsi
>>> @@ -23,8 +23,13 @@
>>> #usr/include/dvbpsi/dr_0d.h
>>> #usr/include/dvbpsi/dr_0e.h
>>> #usr/include/dvbpsi/dr_0f.h
>>> +#usr/include/dvbpsi/dr_10.h
>>> +#usr/include/dvbpsi/dr_11.h
>>> +#usr/include/dvbpsi/dr_12.h
>>> #usr/include/dvbpsi/dr_13.h
>>> #usr/include/dvbpsi/dr_14.h
>>> +#usr/include/dvbpsi/dr_1b.h
>>> +#usr/include/dvbpsi/dr_1c.h
>>> #usr/include/dvbpsi/dr_40.h
>>> #usr/include/dvbpsi/dr_41.h
>>> #usr/include/dvbpsi/dr_42.h
>>> @@ -71,9 +76,11 @@
>>> #usr/include/dvbpsi/sdt.h
>>> #usr/include/dvbpsi/sis.h
>>> #usr/include/dvbpsi/tot.h
>>> +#usr/include/dvbpsi/types
>>> +#usr/include/dvbpsi/types/aac_profile.h
>>> #usr/lib/libdvbpsi.a
>>> #usr/lib/libdvbpsi.la
>>> usr/lib/libdvbpsi.so
>>> -usr/lib/libdvbpsi.so.9
>>> -usr/lib/libdvbpsi.so.9.0.0
>>> +usr/lib/libdvbpsi.so.10
>>> +usr/lib/libdvbpsi.so.10.0.0
>>> #usr/lib/pkgconfig/libdvbpsi.pc
>>> diff --git a/lfs/libdvbpsi b/lfs/libdvbpsi
>>> index 5d7c4ebf4..511303c65 100644
>>> --- a/lfs/libdvbpsi
>>> +++ b/lfs/libdvbpsi
>>> @@ -24,7 +24,7 @@
>>>
>>> include Config
>>>
>>> -VER = 1.2.0
>>> +VER = 1.3.3
>>>
>>> THISAPP = libdvbpsi-$(VER)
>>> DL_FILE = $(THISAPP).tar.bz2
>>> @@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
>>> DIR_APP = $(DIR_SRC)/$(THISAPP)
>>> TARGET = $(DIR_INFO)/$(THISAPP)
>>> PROG = libdvbpsi
>>> -PAK_VER = 2
>>> +PAK_VER = 3
>>>
>>> DEPS =
>>>
>>> @@ -44,7 +44,7 @@ objects = $(DL_FILE)
>>>
>>> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>>>
>>> -$(DL_FILE)_MD5 = 69e38e93c4db4f2a58cbd0b6f9f38228
>>> +$(DL_FILE)_MD5 = 9b556ab08bb62a8bec61f5c1649bc9a8
>>>
>>> install : $(TARGET)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-04-28 8:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-26 12:31 [PATCH] libdvbpsi: Update to 1.3.3 Adolf Belka
2021-04-27 11:05 ` Arne Fitzenreiter
2021-04-28 7:08 ` Adolf Belka
2021-04-28 8:30 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox