Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
3272675b
Commit
3272675b
authored
Mar 25, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare for 0.2.0 release.
parent
06253970
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
7 deletions
+16
-7
NEWS
NEWS
+10
-1
configure.ac
configure.ac
+2
-2
doc/doxygen.cfg
doc/doxygen.cfg
+1
-1
src/dvbpsi.h
src/dvbpsi.h
+3
-3
No files found.
NEWS
View file @
3272675b
$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:
--------------------------------
...
...
configure.ac
View file @
3272675b
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
...
...
doc/doxygen.cfg
View file @
3272675b
...
...
@@ -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.
...
...
src/dvbpsi.h
View file @
3272675b
/*****************************************************************************
* dvbpsi.h
* Copyright (C) 2001-201
0
VideoLAN
* Copyright (C) 2001-201
1
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"
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment