From patchwork Wed Aug 8 13:53:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andr=C3=A9_Roth?= X-Patchwork-Id: 1295891 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 16A333FCFC for ; Wed, 8 Aug 2012 13:53:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030322Ab2HHNxr (ORCPT ); Wed, 8 Aug 2012 09:53:47 -0400 Received: from mail-we0-f174.google.com ([74.125.82.174]:44236 "EHLO mail-we0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030267Ab2HHNxr (ORCPT ); Wed, 8 Aug 2012 09:53:47 -0400 Received: by weyx8 with SMTP id x8so465711wey.19 for ; Wed, 08 Aug 2012 06:53:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:mime-version :content-type:content-transfer-encoding; bh=2yDS42ZBXlr6V5i035AQiISEscmrp3vP57zD1LB8ojw=; b=azZY2S0ivgp132vioDcIpaFy2DOxrvmGJ9uiuHlxNH2uTznwlotY+eX7WiiBv9uNGD 7Z6n4Fas/DgvspMXRRGrh9jyC/2u+9ooWcLEl2NzB3KStwPKN/JI/+PAaG7MsVOeAvda dN1PygdgInGMf8I3+EfPN+6Q7SvXjtJNgx8Gw/H7QvToelWv6Ny70Ji03yrndeqPHncg AO5swMakNkcSVUh+h0TZX2Ue7OtBXjwgZyWVv4IxqcC1On8HhwjepZyDRttlZluVWabE 1CyFCf85c+Jk5OL0yM5hkrzxVNRXIx4S9rXwrYZr0lDGaE8wCHUJkwVLKRWk97GJ4uIK cPRw== Received: by 10.216.85.149 with SMTP id u21mr2893078wee.147.1344434025650; Wed, 08 Aug 2012 06:53:45 -0700 (PDT) Received: from localhost.localdomain (104-38.60-188.cust.bluewin.ch. [188.60.38.104]) by mx.google.com with ESMTPS id ex20sm7782423wid.7.2012.08.08.06.53.44 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Aug 2012 06:53:44 -0700 (PDT) From: =?UTF-8?q?Andr=C3=A9=20Roth?= To: linux-media@vger.kernel.org Cc: =?UTF-8?q?Andr=C3=A9=20Roth?= Subject: [PATCH 7/8] libdvbv5: renamed registration descriptor Date: Wed, 8 Aug 2012 15:53:16 +0200 Message-Id: <1344433997-9832-1-git-send-email-neolynx@gmail.com> X-Mailer: git-send-email 1.7.2.5 MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Signed-off-by: André Roth --- lib/include/descriptors.h | 2 +- lib/libdvbv5/descriptors.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/include/descriptors.h b/lib/include/descriptors.h index 9e3d49b..b1a8e84 100644 --- a/lib/include/descriptors.h +++ b/lib/include/descriptors.h @@ -109,7 +109,7 @@ enum descriptors { video_stream_descriptor = 0x02, audio_stream_descriptor = 0x03, hierarchy_descriptor = 0x04, - dvbpsi_registration_descriptor = 0x05, + registration_descriptor = 0x05, ds_alignment_descriptor = 0x06, target_background_grid_descriptor = 0x07, video_window_descriptor = 0x08, diff --git a/lib/libdvbv5/descriptors.c b/lib/libdvbv5/descriptors.c index d4fab9a..10a61a3 100644 --- a/lib/libdvbv5/descriptors.c +++ b/lib/libdvbv5/descriptors.c @@ -137,7 +137,7 @@ const struct dvb_descriptor dvb_descriptors[] = { [video_stream_descriptor] = { "video_stream_descriptor", NULL, NULL, NULL }, [audio_stream_descriptor] = { "audio_stream_descriptor", NULL, NULL, NULL }, [hierarchy_descriptor] = { "hierarchy_descriptor", NULL, NULL, NULL }, - [dvbpsi_registration_descriptor] = { "dvbpsi_registration_descriptor", NULL, NULL, NULL }, + [registration_descriptor] = { "registration_descriptor", NULL, NULL, NULL }, [ds_alignment_descriptor] = { "ds_alignment_descriptor", NULL, NULL, NULL }, [target_background_grid_descriptor] = { "target_background_grid_descriptor", NULL, NULL, NULL }, [video_window_descriptor] = { "video_window_descriptor", NULL, NULL, NULL }, @@ -1041,7 +1041,7 @@ void hexdump(struct dvb_v5_fe_parms *parms, const char *prefix, const unsigned c /* TODO: remove those stuff */ case ds_alignment_descriptor: -case dvbpsi_registration_descriptor: +case registration_descriptor: case service_list_descriptor: case stuffing_descriptor: case VBI_data_descriptor: