Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
vlc
Commits
b59a8f91
Commit
b59a8f91
authored
Apr 03, 2009
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contrib: backport liveMedia patch
parent
69212582
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
34 deletions
+35
-34
extras/contrib/src/Patches/live-uselocale.patch
extras/contrib/src/Patches/live-uselocale.patch
+35
-34
No files found.
extras/contrib/src/Patches/live-uselocale.patch
View file @
b59a8f91
Copyright (C) 2008 Rémi Denis-Courmont.
Copyright (C) 2008 Rémi Denis-Courmont
, adaptation by Felix Kühne (C) 2009
.
Licensed under GNU General Public License version 2 or higher.
diff -ru live.old/liveMedia/include/Locale.hh live/liveMedia/include/Locale.hh
--- live.old/liveMedia/include/Locale.hh 2008-07-06 04:10:57.000000000 +0300
+++ live/liveMedia/include/Locale.hh 2008-07-13 12:54:21.000000000 +0300
diff -urN live.orig/config.mingw live/config.mingw
--- live.orig/config.mingw 2009-03-23 01:26:16 +0300
+++ live/config.mingw 2009-03-26 19:17:43 +0300
@@ -1,4 +1,4 @@
-COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=int
+COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=int -DLOCALE_NOT_USED
C = c
C_COMPILER = $(CC)
C_FLAGS = $(COMPILE_OPTS) -DUSE_OUR_BZERO=1 -D__MINGW32__
diff -urN live.orig/liveMedia/include/Locale.hh live/liveMedia/include/Locale.hh
--- live.orig/liveMedia/include/Locale.hh 2009-03-23 01:26:16 +0300
+++ live/liveMedia/include/Locale.hh 2009-03-26 19:17:43 +0300
@@ -27,23 +27,26 @@
#ifndef LOCALE_NOT_USED
...
...
@@ -37,9 +46,9 @@ diff -ru live.old/liveMedia/include/Locale.hh live/liveMedia/include/Locale.hh
};
#endif
diff -
ru live.old
/liveMedia/Locale.cpp live/liveMedia/Locale.cpp
--- live.o
ld/liveMedia/Locale.cpp 2008-07-06 04:10:57.000000000
+0300
+++ live/liveMedia/Locale.cpp 200
8-07-13 12:55:32.000000000
+0300
diff -
urN live.orig
/liveMedia/Locale.cpp live/liveMedia/Locale.cpp
--- live.o
rig/liveMedia/Locale.cpp 2009-03-23 01:26:16
+0300
+++ live/liveMedia/Locale.cpp 200
9-03-26 19:17:43
+0300
@@ -22,19 +22,18 @@
#include "Locale.hh"
#include <strDup.hh>
...
...
@@ -66,58 +75,50 @@ diff -ru live.old/liveMedia/Locale.cpp live/liveMedia/Locale.cpp
}
#endif
}
diff -
ru live.old
/liveMedia/RTSPClient.cpp live/liveMedia/RTSPClient.cpp
--- live.o
ld/liveMedia/RTSPClient.cpp 2008-07-06 04:10:57.000000000
+0300
+++ live/liveMedia/RTSPClient.cpp 200
8-07-13 12:53:35.000000000
+0300
@@ -101
7,7 +1017
,7 @@
diff -
urN live.orig
/liveMedia/RTSPClient.cpp live/liveMedia/RTSPClient.cpp
--- live.o
rig/liveMedia/RTSPClient.cpp 2009-03-23 01:26:16
+0300
+++ live/liveMedia/RTSPClient.cpp 200
9-03-26 19:29:38
+0300
@@ -101
9,7 +1019
,7 @@
// This is the default value; we don't need a "Scale:" header:
buf[0] = '\0';
} else {
- Locale("C", LC_NUMERIC);
+ Locale("C", LC_NUMERIC_MASK);
- Locale
l
("C", LC_NUMERIC);
+ Locale
l
("C", LC_NUMERIC_MASK);
sprintf(buf, "Scale: %f\r\n", scale);
}
@@ -103
1,11 +1031
,11 @@
@@ -103
3,11 +1033
,11 @@
buf[0] = '\0';
} else if (end < 0) {
// There's no end time:
- Locale("C", LC_NUMERIC);
+ Locale("C", LC_NUMERIC_MASK);
- Locale
l
("C", LC_NUMERIC);
+ Locale
l
("C", LC_NUMERIC_MASK);
sprintf(buf, "Range: npt=%.3f-\r\n", start);
} else {
// There's both a start and an end time; include them both in the "Range:" hdr
- Locale("C", LC_NUMERIC);
+ Locale("C", LC_NUMERIC_MASK);
- Locale
l
("C", LC_NUMERIC);
+ Locale
l
("C", LC_NUMERIC_MASK);
sprintf(buf, "Range: npt=%.3f-%.3f\r\n", start, end);
}
@@ -23
06,7 +2306
,7 @@
@@ -23
42,7 +2342
,7 @@
if (_strncasecmp(line, "Scale: ", 7) != 0) return False;
line += 7;
- Locale("C", LC_NUMERIC);
+ Locale("C", LC_NUMERIC_MASK);
- Locale
l
("C", LC_NUMERIC);
+ Locale
l
("C", LC_NUMERIC_MASK);
return sscanf(line, "%f", &scale) == 1;
}
diff -
ru live.old
/liveMedia/RTSPCommon.cpp live/liveMedia/RTSPCommon.cpp
--- live.o
ld/liveMedia/RTSPCommon.cpp 2008-11-03 23:28:14.000000000 -10
00
+++ live/liveMedia/RTSPCommon.cpp
2008-11-06 09:05:19.000000000 -10
00
diff -
urN live.orig
/liveMedia/RTSPCommon.cpp live/liveMedia/RTSPCommon.cpp
--- live.o
rig/liveMedia/RTSPCommon.cpp 2009-03-23 01:26:16 +03
00
+++ live/liveMedia/RTSPCommon.cpp
2009-03-26 19:23:25 +03
00
@@ -146,7 +146,7 @@
char const* fields = buf + 7;
while (*fields == ' ') ++fields;
double start, end;
- Locale("C", LC_NUMERIC);
+ Locale("C", LC_NUMERIC_MASK);
- Locale
l
("C", LC_NUMERIC);
+ Locale
l
("C", LC_NUMERIC_MASK);
if (sscanf(fields, "npt = %lf - %lf", &start, &end) == 2) {
rangeStart = start;
rangeEnd = end;
--- live/config.mingw.old 2008-07-27 17:13:52.000000000 +0100
+++ live/config.mingw 2008-07-27 17:19:04.000000000 +0100
@@ -1,4 +1,4 @@
-COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=int
+COMPILE_OPTS = $(INCLUDES) -I. -O -DSOCKLEN_T=int -DLOCALE_NOT_USED
C = c
C_COMPILER = $(CC)
C_FLAGS = $(COMPILE_OPTS) -DUSE_OUR_BZERO=1 -D__MINGW32__
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