-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index cc2037594b2c..f73e55e97ed1 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -6,8 +6,8 @@ AC_INIT(vlc, 3.0.14) | ||
VERSION_MAJOR=3 | ||
VERSION_MINOR=0 | ||
VERSION_REVISION=14 | ||
-VERSION_EXTRA=0 | ||
-VERSION_DEV= | ||
+VERSION_EXTRA=miraktest | ||
+VERSION_DEV=1 | ||
|
||
PKGDIR="vlc" | ||
AC_SUBST(PKGDIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/modules/demux/mpeg/ts.c b/modules/demux/mpeg/ts.c | ||
index 3dbe52775694..af2e308116bf 100644 | ||
--- a/modules/demux/mpeg/ts.c | ||
+++ b/modules/demux/mpeg/ts.c | ||
@@ -2192,6 +2192,7 @@ static void ProgramSetPCR( demux_t *p_demux, ts_pmt_t *p_pmt, mtime_t i_pcr ) | ||
{ | ||
p_pmt->pcr.i_first = i_pcr; // now seen | ||
} | ||
+ msg_Dbg(p_demux, "i_pcr [%" PRId64 "][%" PRId64 "]", i_pcr, p_pmt->pcr.i_first); | ||
|
||
if ( p_sys->i_pmt_es ) | ||
{ |