All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan McCrohan <jmccrohan@gmail.com>
To: Mauro Carvalho Chehab <m.chehab@samsung.com>
Cc: linux-media@vger.kernel.org, oliver@schinagl.nl
Subject: Re: [PATCH 00/12] dvbv5 scan tables for Brazil
Date: Fri, 30 May 2014 01:23:45 +0100	[thread overview]
Message-ID: <20140530002345.GA12450@lambda.dereenigne.org> (raw)
In-Reply-To: <1401209432-7327-1-git-send-email-m.chehab@samsung.com>


[-- Attachment #1.1: Type: text/plain, Size: 638 bytes --]

Hi Mauro,

On Tue, 27 May 2014 13:50:20 -0300, Mauro Carvalho Chehab wrote:
> This patch series add the DTV scan tables for Brazilian ISDB-T
> and for the Brazilian Countys that have already digital TV.

Thanks for the DVBv5 scan files. I had the attached draft patch sitting
in my tree. I don't think it is ready to be committed yet, but probably
worth sending now to discuss.

How do we want to manage the migration from DVBv3 to DVBv5:
1) point in time migration from DVBv3 to DVBv5?
2) maintain both until DVBv5 is in widespread use?

On a side note, I found a bug in dvb-format-convert; it cannot parse
DVB-T2 DVBv3 scan files.

Jon

[-- Attachment #1.2: 0001-Add-Makefile-to-convert-DVBv3-files-to-DVBv5.patch --]
[-- Type: text/x-diff, Size: 1490 bytes --]

From fdcabb0802a4a40e257d54dbd5e5eba59b9820f7 Mon Sep 17 00:00:00 2001
From: Jonathan McCrohan <jmccrohan@gmail.com>
Date: Fri, 30 May 2014 01:14:42 +0100
Subject: [PATCH] Add Makefile to convert DVBv3 files to DVBv5

Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>
---
 Makefile | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 Makefile

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fac40e7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,25 @@
+# Makefile for dtv-scan-tables (26 May 2014)
+# Copyright 2014 Jonathan McCrohan <jmccrohan@gmail.com>
+
+# The vast majority of the DVB scan files contained in this repository
+# are DVBv3 scan files. This format has been deprecated in favor of the
+# DVBv5 scan format.
+#
+# Use this makefile to convert the existing DVBv3 scan files to DVBv5
+# scan files until such time as DVBv5 scan format is in widespread use.
+#
+# Requires dvb-format-convert from v4l-utils.
+
+MKDIR = mkdir -p
+DVBFORMATCONVERT = dvb-format-convert
+
+DVBFORMATCONVERT_CHANNEL_DVBV5 = -ICHANNEL -ODVBV5
+
+DVBV3DIRS = atsc dvb-c dvb-s dvb-t
+DVBV3CHANNELFILES = $(foreach dir,$(DVBV3DIRS),$(wildcard $(dir)/*))
+
+DVBV5OUTPUTDIR = dvbv5
+
+makedvbv5:
+	@$(foreach var,$(DVBV3DIRS), $(MKDIR) $(DVBV5OUTPUTDIR)/$(var);)
+	@$(foreach var,$(DVBV3CHANNELFILES), $(DVBFORMATCONVERT) $(DVBFORMATCONVERT_CHANNEL_DVBV5) $(var) $(DVBV5OUTPUTDIR)/$(var);)
-- 
2.0.0.rc2


[-- Attachment #2: Type: application/pgp-signature, Size: 873 bytes --]

  parent reply	other threads:[~2014-05-30  0:23 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-27 16:50 [PATCH 00/12] dvbv5 scan tables for Brazil Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 01/12] Add ISDB-T brazilian channels table Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 03/12] Add Brazil's Bahia state tables Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 04/12] Add Brazil's Rio Grande do Sul " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 05/12] Add Brazil's Minas Gerais " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 06/12] Add Brazil's Parana " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 07/12] Add Brazil's Santa Catarina " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 08/12] Add Brazil's Sergipe " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 09/12] Add Brazil's Paraiba " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 10/12] Add Brazil's Rio de Janeiro " Mauro Carvalho Chehab
2014-05-27 16:50 ` [PATCH 11/12] Add Brazil's Goias " Mauro Carvalho Chehab
2014-05-30  0:23 ` Jonathan McCrohan [this message]
2014-05-30  0:37   ` [PATCH 00/12] dvbv5 scan tables for Brazil Mauro Carvalho Chehab
     [not found] ` <539A0691.1030608@schinagl.nl>
     [not found]   ` <20140727223925.66683c2c.m.chehab@samsung.com>
     [not found]     ` <20140831135702.045bfbc3.m.chehab@samsung.com>
2014-09-02 18:59       ` Olliver Schinagl
2014-09-02 19:36         ` Mauro Carvalho Chehab

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140530002345.GA12450@lambda.dereenigne.org \
    --to=jmccrohan@gmail.com \
    --cc=linux-media@vger.kernel.org \
    --cc=m.chehab@samsung.com \
    --cc=oliver@schinagl.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.