-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* general changes : sound file can now be preloaded (ie analysed and displayed) before beeing played, or can still be analysed and displayed while playing (as it was already before); also sound can be recorded and loaded as an audio_file; the sdl-gl window can now be resized at any size on the fly; * main.c : SDL window is now built at the start of Spectrum3d and destroyed when Spectrum3d quits, as well as callback for managing events in sdl window and callback to display harmonics; SDL window can now be resized on the fly at any size; * main.c : many changes regarding the Gtk user interface : some buttons have been added, some were changed, some were removed and several have been moved to menu; * display : display_spectro() and display_paused_spectro() have been merged in one function; * gstreamer.c : in playFromSource(), the different parts have been merged in one part; * typesource.c : created to manage the type of audio source, including the selection of an audio file and its preloading; * events.c : events are managed with SDL_PollEvent only; resize and scroll events have been added; key events have been changed somehow; * menu.c : many things from the GUI were moved here including perspective (i.e. 2D or 3D), scale commands (text, lines, pointer), and other; * preferences.c : many unnecessary item have been removed; * spectrum3d.h : created to host Spectrum3d-specific structures; --- filename: 'spectrum3d-2.0.1.tar.gz' sha256: '63d3951af387d6e1e9f5d500fa680cca8e55c344a1f587899eda48ea893f68ff' ...
- Loading branch information
Bernard Victor Delvaux
committed
Jan 27, 2012
1 parent
fa7e2ed
commit 2d93be4
Showing
44 changed files
with
2,616 additions
and
1,943 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
SUBDIRS = src data doc | ||
|
||
#ACLOCAL_AMFLAGS = -I m4 | ||
|
||
.PHONY: INSTALL | ||
|
||
#install-data-hook: | ||
# mkdir -p $(HOME)/.$(PACKAGE) | ||
# chown $(LOGNAME) $(HOME)/.$(PACKAGE) | ||
|
||
uninstall-hook: | ||
rm -f $(HOME)/.$(PACKAGE)/spectrum3d.pref | ||
|
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
Oops, something went wrong.