+2007-11-06 Tim-Philipp Müller <tim at centricular dot net>
+
+ Patch by: Sebastien Moutte <sebastien moutte net>
+
+ * gst-libs/gst/rtp/gstrtcpbuffer.c: (gst_rtcp_ntp_to_unix),
+ (gst_rtcp_unix_to_ntp):
+ * gst-libs/gst/rtp/gstrtppayloads.c: (gst_rtp_payload_info_for_name):
+ Fix some C99-isms and and a missing function that some versions of
+ MSVC don't like too much (#494346).
+
+ * win32/vs6/gst_plugins_base.dsw:
+ * win32/vs6/libgstaudio.dsp:
+ * win32/vs6/libgstrtp.dsp:
+ * win32/vs6/libgsttag.dsp:
+ Update vs6 projects files (#494346).
+
2007-11-06 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Ole André Vadla Ravnås <ole.andre.ravnas@tandberg.com>
/* conversion from NTP timestamp (seconds since 1900) to seconds since
* 1970. */
- unixtime = ntptime - (2208988800ULL << 32);
+ unixtime = ntptime - (G_GUINT64_CONSTANT (2208988800) << 32);
/* conversion to nanoseconds */
- unixtime = gst_util_uint64_scale (unixtime, GST_SECOND, (1LL << 32));
+ unixtime =
+ gst_util_uint64_scale (unixtime, GST_SECOND,
+ (G_GINT64_CONSTANT (1) << 32));
return unixtime;
}
/* convert clock time to NTP time. upper 32 bits should contain the seconds
* and the lower 32 bits, the fractions of a second. */
- ntptime = gst_util_uint64_scale (unixtime, (1LL << 32), GST_SECOND);
+ ntptime =
+ gst_util_uint64_scale (unixtime, (G_GINT64_CONSTANT (1) << 32),
+ GST_SECOND);
/* conversion from UNIX timestamp (seconds since 1970) to NTP (seconds
* since 1900). */
- ntptime += (2208988800ULL << 32);
+ ntptime += (G_GUINT64_CONSTANT (2208988800) << 32);
return ntptime;
}
for (i = 0; info[i].media; i++) {
if (strcmp (media, info[i].media) == 0
- && strcasecmp (encoding_name, info[i].encoding_name) == 0) {
+ && g_strcasecmp (encoding_name, info[i].encoding_name) == 0) {
result = &info[i];
break;
}
\r
###############################################################################\r
\r
+Project: "libgstfft"=".\libgstfft.dsp" - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
Project: "libgstgdp"=".\libgstgdp.dsp" - Package Owner=<4>\r
\r
Package=<5>\r
# ADD BSC32 /nologo\r
LINK32=link.exe\r
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386\r
-# ADD LINK32 libgstreamer-0.10.lib libgstbase-0.10.lib glib-2.0.lib gobject-2.0.lib /nologo /dll /machine:I386 /out:"Release/libgstaudio-0.10.dll" /libpath:"../../../gstreamer/win32/vs6/release" /libpath:"./release"\r
+# ADD LINK32 glib-2.0.lib gobject-2.0.lib libgstreamer-0.10.lib libgstbase-0.10.lib libgstinterfaces-0.10.lib /nologo /dll /machine:I386 /out:"Release/libgstaudio-0.10.dll" /libpath:"../../../gstreamer/win32/vs6/release" /libpath:"./release"\r
# Begin Special Build Tool\r
TargetPath=.\Release\libgstaudio-0.10.dll\r
SOURCE="$(InputPath)"\r
# ADD BSC32 /nologo\r
LINK32=link.exe\r
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 libgstreamer-0.10.lib libgstbase-0.10.lib glib-2.0D.lib gobject-2.0D.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstaudio-0.10.dll" /pdbtype:sept /libpath:"../../../gstreamer/win32/vs6/debug" /libpath:"./debug"\r
+# ADD LINK32 glib-2.0D.lib gobject-2.0D.lib libgstreamer-0.10.lib libgstbase-0.10.lib libgstinterfaces-0.10.lib /nologo /dll /debug /machine:I386 /out:"Debug/libgstaudio-0.10.dll" /pdbtype:sept /libpath:"../../../gstreamer/win32/vs6/debug" /libpath:"./debug"\r
# Begin Special Build Tool\r
TargetPath=.\Debug\libgstaudio-0.10.dll\r
SOURCE="$(InputPath)"\r
# End Source File\r
# Begin Source File\r
\r
+SOURCE="..\..\gst-libs\gst\audio\mixerutils.c"
+# End Source File
+# Begin Source File
+
SOURCE="..\..\gst-libs\gst\audio\multichannel-enumtypes.c"\r
# End Source File\r
# Begin Source File\r
# End Source File\r
# Begin Source File\r
\r
+SOURCE="..\..\gst-libs\gst\rtp\gstrtcpbuffer.c"\r
+# End Source File\r
+# Begin Source File\r
+
SOURCE="..\..\gst-libs\gst\rtp\gstrtpbuffer.c"\r
# End Source File\r
# Begin Source File\r
\r
+SOURCE="..\..\gst-libs\gst\rtp\gstrtppayloads.c"\r
+# End Source File\r
+# Begin Source File\r
+\r
SOURCE=..\common\libgstrtp.def\r
# End Source File\r
# End Group\r
# End Source File\r
# Begin Source File\r
\r
+SOURCE="..\..\gst-libs\gst\tag\gsttagdemux.c"
+# End Source File
+# Begin Source File
+
SOURCE="..\..\gst-libs\gst\tag\gstvorbistag.c"\r
# End Source File\r
# Begin Source File\r