mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 05:16:05 +00:00
fix a memory leak that occured under Windows add gst_scheduler_register
Original commit message from CVS: fix a memory leak that occured under Windows add gst_scheduler_register
This commit is contained in:
parent
6e15cb6ce9
commit
658dfd2cb9
5 changed files with 13 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-08-11 Steve Lhomme <steve.lhomme@free.fr>
|
||||||
|
|
||||||
|
* win32/GStreamer.vcproj:
|
||||||
|
fix a memory leak that occured under Windows
|
||||||
|
* win32/gstreamer.def:
|
||||||
|
add gst_scheduler_register
|
||||||
|
|
||||||
2004-08-11 Benjamin Otte <otte@gnome.org>
|
2004-08-11 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
|
|
|
@ -102,7 +102,7 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalIncludeDirectories=".\;..\;..\libs;c:\usr\include"
|
AdditionalIncludeDirectories=".\;..\;..\libs;c:\usr\include"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;HAVE_CONFIG_H;HAVE_WIN32;GST_DISABLE_GST_DEBUG;GST_EXPORTS"
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;HAVE_CONFIG_H;HAVE_WIN32;GST_EXPORTS"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
UsePrecompiledHeader="2"
|
UsePrecompiledHeader="2"
|
||||||
PrecompiledHeaderThrough="config.h"
|
PrecompiledHeaderThrough="config.h"
|
||||||
|
@ -152,6 +152,7 @@ bison -d -v -p_gst_parse__yy $(ProjectDir)..\gst\parse\grammar.y -o $(ProjectDir
|
||||||
flex -P_gst_parse_yy $(ProjectDir)..\gst\parse\parse.l
|
flex -P_gst_parse_yy $(ProjectDir)..\gst\parse\parse.l
|
||||||
move lex._gst_parse_yy.c $(ProjectDir)..\gst\parse\lex._gst_parse_yy.c
|
move lex._gst_parse_yy.c $(ProjectDir)..\gst\parse\lex._gst_parse_yy.c
|
||||||
type gstreamer.def > gst.def
|
type gstreamer.def > gst.def
|
||||||
|
type gstreamer-dbg.def >> gst.def
|
||||||
"/>
|
"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
|
|
|
@ -219,6 +219,7 @@ EXPORTS
|
||||||
gst_atomic_int_read
|
gst_atomic_int_read
|
||||||
gst_pad_set_active
|
gst_pad_set_active
|
||||||
gst_scheduler_get_type
|
gst_scheduler_get_type
|
||||||
|
gst_scheduler_register
|
||||||
gst_plugin_add_feature
|
gst_plugin_add_feature
|
||||||
gst_scheduler_factory_new
|
gst_scheduler_factory_new
|
||||||
gst_pad_call_get_function
|
gst_pad_call_get_function
|
||||||
|
|
|
@ -102,7 +102,7 @@ type gstreamer-dbg.def >> gst.def
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalIncludeDirectories=".\;..\;..\libs;c:\usr\include"
|
AdditionalIncludeDirectories=".\;..\;..\libs;c:\usr\include"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;HAVE_CONFIG_H;HAVE_WIN32;GST_DISABLE_GST_DEBUG;GST_EXPORTS"
|
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;HAVE_CONFIG_H;HAVE_WIN32;GST_EXPORTS"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
UsePrecompiledHeader="2"
|
UsePrecompiledHeader="2"
|
||||||
PrecompiledHeaderThrough="config.h"
|
PrecompiledHeaderThrough="config.h"
|
||||||
|
@ -152,6 +152,7 @@ bison -d -v -p_gst_parse__yy $(ProjectDir)..\gst\parse\grammar.y -o $(ProjectDir
|
||||||
flex -P_gst_parse_yy $(ProjectDir)..\gst\parse\parse.l
|
flex -P_gst_parse_yy $(ProjectDir)..\gst\parse\parse.l
|
||||||
move lex._gst_parse_yy.c $(ProjectDir)..\gst\parse\lex._gst_parse_yy.c
|
move lex._gst_parse_yy.c $(ProjectDir)..\gst\parse\lex._gst_parse_yy.c
|
||||||
type gstreamer.def > gst.def
|
type gstreamer.def > gst.def
|
||||||
|
type gstreamer-dbg.def >> gst.def
|
||||||
"/>
|
"/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"/>
|
Name="VCPreLinkEventTool"/>
|
||||||
|
|
|
@ -219,6 +219,7 @@ EXPORTS
|
||||||
gst_atomic_int_read
|
gst_atomic_int_read
|
||||||
gst_pad_set_active
|
gst_pad_set_active
|
||||||
gst_scheduler_get_type
|
gst_scheduler_get_type
|
||||||
|
gst_scheduler_register
|
||||||
gst_plugin_add_feature
|
gst_plugin_add_feature
|
||||||
gst_scheduler_factory_new
|
gst_scheduler_factory_new
|
||||||
gst_pad_call_get_function
|
gst_pad_call_get_function
|
||||||
|
|
Loading…
Reference in a new issue