Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages
@ 2024-01-24  2:03 Marth64
  2024-01-28 22:27 ` Stefano Sabatini
  0 siblings, 1 reply; 4+ messages in thread
From: Marth64 @ 2024-01-24  2:03 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Marth64

There are 6 deprecated ISO language codes that are still valid for DVDs.
This patch allows avlanguage to recognize them correctly. The codes are:
(1) "in" - legacy code for Indonesian, mapped to the modern code
(2) "iw" - legacy code for Hebrew, mapped to the modern code
(3) "ji" - legacy code for Yiddish, mapped to the modern code
(4) "jw" - legacy code for Javanese, published and used as a typoed version of "jv"
(5) "mo" - legacy code for Moldavian, mapped to the inclusive code
(6) "sh" - legacy code for Serbo-Croatian, no modern inclusive code so it is left alone

All of this can be verified from several sources including:
https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes

I split this off from the DVD demuxer patch to simplify it a bit.
Sent with git send-email and passes fate, pls let me know if there are issues.

Thank you,

Signed-off-by: Marth64 <marth64@proxyid.net>
---
 libavformat/avlanguage.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/libavformat/avlanguage.c b/libavformat/avlanguage.c
index 782a58adb2..202d9aa835 100644
--- a/libavformat/avlanguage.c
+++ b/libavformat/avlanguage.c
@@ -29,7 +29,7 @@ typedef struct LangEntry {
     uint16_t next_equivalent;
 } LangEntry;
 
-static const uint16_t lang_table_counts[] = { 484, 20, 184 };
+static const uint16_t lang_table_counts[] = { 484, 20, 190 };
 static const uint16_t lang_table_offsets[] = { 0, 484, 504 };
 
 static const LangEntry lang_table[] = {
@@ -539,7 +539,7 @@ static const LangEntry lang_table[] = {
     /*0501*/ { "slk",  647 },
     /*0502*/ { "sqi",  652 },
     /*0503*/ { "zho",  686 },
-    /*----- AV_LANG_ISO639_1 entries (184) -----*/
+    /*----- AV_LANG_ISO639_1 entries (190) -----*/
     /*0504*/ { "aa" ,    0 },
     /*0505*/ { "ab" ,    1 },
     /*0506*/ { "ae" ,   33 },
@@ -724,6 +724,12 @@ static const LangEntry lang_table[] = {
     /*0685*/ { "za" ,  478 },
     /*0686*/ { "zh" ,   78 },
     /*0687*/ { "zu" ,  480 },
+    /*0688*/ { "in" ,  195 }, /* deprecated */
+    /*0689*/ { "iw" ,  172 }, /* deprecated */
+    /*0690*/ { "ji" ,  472 }, /* deprecated */
+    /*0691*/ { "jw" ,  202 }, /* deprecated */
+    /*0692*/ { "mo" ,  358 }, /* deprecated */
+    /*0693*/ { "sh" ,  693 }, /* deprecated (no equivalent) */
     { "", 0 }
 };
 
-- 
2.34.1

_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages
  2024-01-24  2:03 [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages Marth64
@ 2024-01-28 22:27 ` Stefano Sabatini
  2024-02-03 11:57   ` Stefano Sabatini
  0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2024-01-28 22:27 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Marth64

On date Tuesday 2024-01-23 20:03:19 -0600, Marth64 wrote:
> There are 6 deprecated ISO language codes that are still valid for DVDs.
> This patch allows avlanguage to recognize them correctly. The codes are:
> (1) "in" - legacy code for Indonesian, mapped to the modern code
> (2) "iw" - legacy code for Hebrew, mapped to the modern code
> (3) "ji" - legacy code for Yiddish, mapped to the modern code
> (4) "jw" - legacy code for Javanese, published and used as a typoed version of "jv"
> (5) "mo" - legacy code for Moldavian, mapped to the inclusive code
> (6) "sh" - legacy code for Serbo-Croatian, no modern inclusive code so it is left alone
> 
> All of this can be verified from several sources including:
> https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes
> 
> I split this off from the DVD demuxer patch to simplify it a bit.
> Sent with git send-email and passes fate, pls let me know if there are issues.
> 
> Thank you,
> 
> Signed-off-by: Marth64 <marth64@proxyid.net>
> ---
>  libavformat/avlanguage.c | 10 ++++++++--
>  1 file changed, 8 insertions(+), 2 deletions(-)

LGTM, will apply in a few days if I see no comments.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages
  2024-01-28 22:27 ` Stefano Sabatini
@ 2024-02-03 11:57   ` Stefano Sabatini
  2024-02-03 16:01     ` Marth64
  0 siblings, 1 reply; 4+ messages in thread
From: Stefano Sabatini @ 2024-02-03 11:57 UTC (permalink / raw)
  To: FFmpeg development discussions and patches, Marth64

On date Sunday 2024-01-28 23:27:10 +0100, Stefano Sabatini wrote:
> On date Tuesday 2024-01-23 20:03:19 -0600, Marth64 wrote:
> > There are 6 deprecated ISO language codes that are still valid for DVDs.
> > This patch allows avlanguage to recognize them correctly. The codes are:
> > (1) "in" - legacy code for Indonesian, mapped to the modern code
> > (2) "iw" - legacy code for Hebrew, mapped to the modern code
> > (3) "ji" - legacy code for Yiddish, mapped to the modern code
> > (4) "jw" - legacy code for Javanese, published and used as a typoed version of "jv"
> > (5) "mo" - legacy code for Moldavian, mapped to the inclusive code
> > (6) "sh" - legacy code for Serbo-Croatian, no modern inclusive code so it is left alone
> > 
> > All of this can be verified from several sources including:
> > https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes
> > 
> > I split this off from the DVD demuxer patch to simplify it a bit.
> > Sent with git send-email and passes fate, pls let me know if there are issues.
> > 
> > Thank you,
> > 
> > Signed-off-by: Marth64 <marth64@proxyid.net>
> > ---
> >  libavformat/avlanguage.c | 10 ++++++++--
> >  1 file changed, 8 insertions(+), 2 deletions(-)
> 
> LGTM, will apply in a few days if I see no comments.

Applied, thanks again.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages
  2024-02-03 11:57   ` Stefano Sabatini
@ 2024-02-03 16:01     ` Marth64
  0 siblings, 0 replies; 4+ messages in thread
From: Marth64 @ 2024-02-03 16:01 UTC (permalink / raw)
  To: FFmpeg development discussions and patches, Marth64

Thank you Stefano.
Respectfully,

On Sat, Feb 3, 2024 at 05:57 Stefano Sabatini <stefasab@gmail.com> wrote:

> On date Sunday 2024-01-28 23:27:10 +0100, Stefano Sabatini wrote:
> > On date Tuesday 2024-01-23 20:03:19 -0600, Marth64 wrote:
> > > There are 6 deprecated ISO language codes that are still valid for
> DVDs.
> > > This patch allows avlanguage to recognize them correctly. The codes
> are:
> > > (1) "in" - legacy code for Indonesian, mapped to the modern code
> > > (2) "iw" - legacy code for Hebrew, mapped to the modern code
> > > (3) "ji" - legacy code for Yiddish, mapped to the modern code
> > > (4) "jw" - legacy code for Javanese, published and used as a typoed
> version of "jv"
> > > (5) "mo" - legacy code for Moldavian, mapped to the inclusive code
> > > (6) "sh" - legacy code for Serbo-Croatian, no modern inclusive code so
> it is left alone
> > >
> > > All of this can be verified from several sources including:
> > > https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes
> > >
> > > I split this off from the DVD demuxer patch to simplify it a bit.
> > > Sent with git send-email and passes fate, pls let me know if there are
> issues.
> > >
> > > Thank you,
> > >
> > > Signed-off-by: Marth64 <marth64@proxyid.net>
> > > ---
> > >  libavformat/avlanguage.c | 10 ++++++++--
> > >  1 file changed, 8 insertions(+), 2 deletions(-)
> >
> > LGTM, will apply in a few days if I see no comments.
>
> Applied, thanks again.
>
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-02-03 16:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-24  2:03 [FFmpeg-devel] [PATCH] avformat/avlanguage: add the 6 deprecated DVD languages Marth64
2024-01-28 22:27 ` Stefano Sabatini
2024-02-03 11:57   ` Stefano Sabatini
2024-02-03 16:01     ` Marth64

Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

This inbox may be cloned and mirrored by anyone:

	git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
		ffmpegdev@gitmailbox.com
	public-inbox-index ffmpegdev

Example config snippet for mirrors.


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git