Commit 3272675b authored by Jean-Paul Saman's avatar Jean-Paul Saman

Prepare for 0.2.0 release.

parent 06253970
$Id$
Changes between 0.1.7 and 1.0.0:
Changes between 0.1.7 and 0.2.0:
--------------------------------
* Relicense libdvbpsi from GPLv2 to LGPLv2.1
* bump version number to 0.2.0 (skipping 0.1.8 and 0.1.9) to indicate
GPL -> LGPL license change
* new CUE Identifier descriptor support (0x8a)
* new Splice Information Section table support (0xFC) (SCTE 35 2004)
* new BAT table (decoder and generator)
* new descriptor 0x44
* depreceated all API's in preparation for 1.0.0 release with revamped API
packagers and application developers should anticipate:
- structure renames dvbpsi_handle to dvbpsi_t
- prototype changes
- removal of printf for message printing
- message callback function
For more information see changes in libdvbpsi-ng branch.
Changes between 0.1.6 and 0.1.7:
--------------------------------
......
AC_INIT(libdvbpsi, 1.0.0)
AC_INIT(libdvbpsi, 0.2.0)
AC_PREREQ(2.50)
AC_CONFIG_AUX_DIR(.auto)
......@@ -16,7 +16,7 @@ AM_PROG_LIBTOOL
dnl default CFLAGS
CFLAGS="${CFLAGS} -Wall -Werror -DDVBPSI_DIST --std=gnu99"
CFLAGS="${CFLAGS} -Wall -DDVBPSI_DIST --std=gnu99"
CFLAGS="${CFLAGS} -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs -Wsign-compare"
dnl check the operating system
......
......@@ -31,7 +31,7 @@ PROJECT_NAME = libdvbpsi
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = 1.0.0
PROJECT_NUMBER = 0.2.0
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
......
/*****************************************************************************
* dvbpsi.h
* Copyright (C) 2001-2010 VideoLAN
* Copyright (C) 2001-2011 VideoLAN
* $Id$
*
* Authors: Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
......@@ -33,8 +33,8 @@
#ifndef _DVBPSI_DVBPSI_H_
#define _DVBPSI_DVBPSI_H_
#define DVBPSI_VERSION 0.1.7
#define DVBPSI_VERSION_INT ((0<<16)+(1<<8)+7)
#define DVBPSI_VERSION 0.2.0
#define DVBPSI_VERSION_INT ((0<<16)+(2<<8)+0)
#ifdef __cplusplus
extern "C" {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment