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
e8ed4c57
Commit
e8ed4c57
authored
Nov 04, 2011
by
Sašo Kiselkov
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.videolan.org/libdvbpsi
parents
2d6d87af
0d70171f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
4 deletions
+18
-4
NEWS
NEWS
+6
-0
configure.ac
configure.ac
+5
-1
doc/doxygen.cfg
doc/doxygen.cfg
+1
-1
src/Makefile.am
src/Makefile.am
+4
-0
src/dvbpsi.h
src/dvbpsi.h
+2
-2
No files found.
NEWS
View file @
e8ed4c57
$Id$
$Id$
Changes between 0.2.1 and 0.2.2:
--------------------------------
* revert regression introduced by "ignore initial discontinuity" commit (commit-id: d565a849ad0191ed14db018546c71eb52d47a741).
* do not use -no-undefined linkerflag on *BSD systems
Changes between 0.2.0 and 0.2.1:
Changes between 0.2.0 and 0.2.1:
--------------------------------
--------------------------------
...
...
configure.ac
View file @
e8ed4c57
AC_INIT(libdvbpsi, 0.2.
1
)
AC_INIT(libdvbpsi, 0.2.
2
)
AC_PREREQ(2.50)
AC_PREREQ(2.50)
AC_CONFIG_AUX_DIR(.auto)
AC_CONFIG_AUX_DIR(.auto)
...
@@ -29,9 +29,13 @@ case "${target_os}" in
...
@@ -29,9 +29,13 @@ case "${target_os}" in
*mingw32* | *cygwin* | *wince* | *mingwce*)
*mingw32* | *cygwin* | *wince* | *mingwce*)
have_win32="yes"
have_win32="yes"
;;
;;
*bsd*)
have_bsd="yes"
;;
esac
esac
AM_CONDITIONAL(HAVE_DARWIN, test "${have_darwin}" = "yes")
AM_CONDITIONAL(HAVE_DARWIN, test "${have_darwin}" = "yes")
AM_CONDITIONAL(HAVE_WIN32, test "${have_win32}" = "yes")
AM_CONDITIONAL(HAVE_WIN32, test "${have_win32}" = "yes")
AM_CONDITIONAL(HAVE_BSD, test "${have_bsd}" = "yes")
dnl --enable-debug
dnl --enable-debug
AC_ARG_ENABLE(debug,
AC_ARG_ENABLE(debug,
...
...
doc/doxygen.cfg
View file @
e8ed4c57
...
@@ -31,7 +31,7 @@ PROJECT_NAME = libdvbpsi
...
@@ -31,7 +31,7 @@ PROJECT_NAME = libdvbpsi
# This could be handy for archiving the generated documentation or
# This could be handy for archiving the generated documentation or
# if some version control system is used.
# if some version control system is used.
PROJECT_NUMBER = 0.2.
1
PROJECT_NUMBER = 0.2.
2
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# base path where the generated documentation will be put.
...
...
src/Makefile.am
View file @
e8ed4c57
...
@@ -19,9 +19,13 @@ else
...
@@ -19,9 +19,13 @@ else
if
HAVE_DARWIN
if
HAVE_DARWIN
libdvbpsi_la_LDFLAGS
+=
-no-undefined
libdvbpsi_la_LDFLAGS
+=
-no-undefined
else
else
if
HAVE_BSD
libdvbpsi_la_LDFLAGS
+=
else
libdvbpsi_la_LDFLAGS
+=
-Wl
,--no-undefined
libdvbpsi_la_LDFLAGS
+=
-Wl
,--no-undefined
endif
endif
endif
endif
endif
pkginclude_HEADERS
=
dvbpsi.h psi.h descriptor.h demux.h
\
pkginclude_HEADERS
=
dvbpsi.h psi.h descriptor.h demux.h
\
tables/pat.h tables/pmt.h tables/sdt.h tables/eit.h
\
tables/pat.h tables/pmt.h tables/sdt.h tables/eit.h
\
...
...
src/dvbpsi.h
View file @
e8ed4c57
...
@@ -33,8 +33,8 @@
...
@@ -33,8 +33,8 @@
#ifndef _DVBPSI_DVBPSI_H_
#ifndef _DVBPSI_DVBPSI_H_
#define _DVBPSI_DVBPSI_H_
#define _DVBPSI_DVBPSI_H_
#define DVBPSI_VERSION 0.2.
0
#define DVBPSI_VERSION 0.2.
2
#define DVBPSI_VERSION_INT ((0<<16)+(2<<8)+
0
)
#define DVBPSI_VERSION_INT ((0<<16)+(2<<8)+
2
)
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
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