gnomemm r1497 - in gstreamermm/trunk: . examples/media_player_gtkmm examples/ogg_player examples/ogg_player_gtkmm examples/optiongroup
- From: murrayc svn gnome org
- To: svn-commits-list gnome org
- Subject: gnomemm r1497 - in gstreamermm/trunk: . examples/media_player_gtkmm examples/ogg_player examples/ogg_player_gtkmm examples/optiongroup
- Date: Fri, 16 May 2008 23:02:44 +0100 (BST)
Author: murrayc
Date: Fri May 16 22:02:43 2008
New Revision: 1497
URL: http://svn.gnome.org/viewvc/gnomemm?rev=1497&view=rev
Log:
2008-05-17 Murray Cumming <murrayc murrayc com>
* examples/: Renamed files to be consistent with other *mm examples.
Added:
gstreamermm/trunk/examples/media_player_gtkmm/player_window.cc
- copied, changed from r1496, /gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.cc
gstreamermm/trunk/examples/media_player_gtkmm/player_window.h
- copied unchanged from r1496, /gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.h
gstreamermm/trunk/examples/ogg_player_gtkmm/player_window.cc
- copied, changed from r1496, /gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.cc
gstreamermm/trunk/examples/ogg_player_gtkmm/player_window.h
- copied unchanged from r1496, /gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.h
gstreamermm/trunk/examples/optiongroup/main.cc
- copied unchanged from r1496, /gstreamermm/trunk/examples/optiongroup/optiongroup.cc
Removed:
gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.cc
gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.h
gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.cc
gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.h
gstreamermm/trunk/examples/optiongroup/optiongroup.cc
Modified:
gstreamermm/trunk/ChangeLog
gstreamermm/trunk/examples/media_player_gtkmm/Makefile.am
gstreamermm/trunk/examples/media_player_gtkmm/main.cc
gstreamermm/trunk/examples/ogg_player/Makefile.am
gstreamermm/trunk/examples/ogg_player_gtkmm/Makefile.am
gstreamermm/trunk/examples/ogg_player_gtkmm/main.cc
gstreamermm/trunk/examples/optiongroup/Makefile.am
Modified: gstreamermm/trunk/examples/media_player_gtkmm/Makefile.am
==============================================================================
--- gstreamermm/trunk/examples/media_player_gtkmm/Makefile.am (original)
+++ gstreamermm/trunk/examples/media_player_gtkmm/Makefile.am Fri May 16 22:02:43 2008
@@ -1,6 +1,6 @@
include $(top_srcdir)/examples/Makefile.am_fragment
#Build the executable, but don't install it.
-noinst_PROGRAMS = mediaplayer
-mediaplayer_SOURCES = main.cc PlayerWindow.cc PlayerWindow.h
+noinst_PROGRAMS = example
+example_SOURCES = main.cc player_window.cc player_window.h
Modified: gstreamermm/trunk/examples/media_player_gtkmm/main.cc
==============================================================================
--- gstreamermm/trunk/examples/media_player_gtkmm/main.cc (original)
+++ gstreamermm/trunk/examples/media_player_gtkmm/main.cc Fri May 16 22:02:43 2008
@@ -26,7 +26,7 @@
#include <gstreamermm/pad.h>
#include <gstreamermm/pipeline.h>
#include <iostream>
-#include "PlayerWindow.h"
+#include "player_window.h"
int
main (int argc, char *argv[])
Copied: gstreamermm/trunk/examples/media_player_gtkmm/player_window.cc (from r1496, /gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.cc)
==============================================================================
--- /gstreamermm/trunk/examples/media_player_gtkmm/PlayerWindow.cc (original)
+++ gstreamermm/trunk/examples/media_player_gtkmm/player_window.cc Fri May 16 22:02:43 2008
@@ -34,7 +34,7 @@
#include <iostream>
#include <sstream>
#include <iomanip>
-#include "PlayerWindow.h"
+#include "player_window.h"
PlayerWindow::PlayerWindow(const Glib::RefPtr<Gst::Pipeline>& playbin, const Glib::RefPtr<Gst::Element>& videoSink)
: m_vbox(false, 6),
Modified: gstreamermm/trunk/examples/ogg_player/Makefile.am
==============================================================================
--- gstreamermm/trunk/examples/ogg_player/Makefile.am (original)
+++ gstreamermm/trunk/examples/ogg_player/Makefile.am Fri May 16 22:02:43 2008
@@ -1,6 +1,6 @@
include $(top_srcdir)/examples/Makefile.am_fragment
#Build the executable, but don't install it.
-noinst_PROGRAMS = oggplayer
-oggplayer_SOURCES = main.cc
+noinst_PROGRAMS = example
+example_SOURCES = main.cc
Modified: gstreamermm/trunk/examples/ogg_player_gtkmm/Makefile.am
==============================================================================
--- gstreamermm/trunk/examples/ogg_player_gtkmm/Makefile.am (original)
+++ gstreamermm/trunk/examples/ogg_player_gtkmm/Makefile.am Fri May 16 22:02:43 2008
@@ -1,6 +1,6 @@
include $(top_srcdir)/examples/Makefile.am_fragment
#Build the executable, but don't install it.
-noinst_PROGRAMS = oggplayer
-oggplayer_SOURCES = main.cc PlayerWindow.cc PlayerWindow.h
+noinst_PROGRAMS = example
+example_SOURCES = main.cc player_window.cc player_window.h
Modified: gstreamermm/trunk/examples/ogg_player_gtkmm/main.cc
==============================================================================
--- gstreamermm/trunk/examples/ogg_player_gtkmm/main.cc (original)
+++ gstreamermm/trunk/examples/ogg_player_gtkmm/main.cc Fri May 16 22:02:43 2008
@@ -26,7 +26,7 @@
#include <gstreamermm/pad.h>
#include <gstreamermm/pipeline.h>
#include <iostream>
-#include "PlayerWindow.h"
+#include "player_window.h"
Glib::RefPtr<Gst::Pipeline> pipeline;
Glib::RefPtr<Gst::Element> decoder;
Copied: gstreamermm/trunk/examples/ogg_player_gtkmm/player_window.cc (from r1496, /gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.cc)
==============================================================================
--- /gstreamermm/trunk/examples/ogg_player_gtkmm/PlayerWindow.cc (original)
+++ gstreamermm/trunk/examples/ogg_player_gtkmm/player_window.cc Fri May 16 22:02:43 2008
@@ -29,7 +29,7 @@
#include <iostream>
#include <sstream>
#include <iomanip>
-#include "PlayerWindow.h"
+#include "player_window.h"
PlayerWindow::PlayerWindow(const Glib::RefPtr<Gst::Element>& source_element, const Glib::RefPtr<Gst::Pipeline>& main_pipeline)
: m_vbox(false, 5),
Modified: gstreamermm/trunk/examples/optiongroup/Makefile.am
==============================================================================
--- gstreamermm/trunk/examples/optiongroup/Makefile.am (original)
+++ gstreamermm/trunk/examples/optiongroup/Makefile.am Fri May 16 22:02:43 2008
@@ -1,6 +1,6 @@
include $(top_srcdir)/examples/Makefile.am_fragment
#Build the executable, but don't install it.
-noinst_PROGRAMS = optiongroup
-optiongroup_SOURCES = optiongroup.cc
+noinst_PROGRAMS = example
+example_SOURCES = main.cc
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]