~ubuntu-branches/ubuntu/oneiric/ecasound2.2/oneiric

« back to all changes in this revision

Viewing changes to ecatools/ecaplay.c

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2008-03-23 21:42:49 UTC
  • mfrom: (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080323214249-evlfv3y1o8q747la
Tags: 2.4.6.1-2
* Bug fix: "FTBFS with GCC 4.3: missing #includes", thanks to Martin
  Michlmayr (Closes: #454890).
- 13_gcc4: updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * ecaplay.c: A simple command-line tool for playing audio files.
3
3
 *
4
 
 * Copyright (C) 1999-2002,2004-2005 Kai Vehmanen
 
4
 * Copyright (C) 1999-2002,2004-2006 Kai Vehmanen
5
5
 *
6
6
 * This program is free software; you can redistribute it and/or modify
7
7
 * it under the terms of the GNU General Public License as published by
22
22
 * TODO:
23
23
 * - show playlist length during runtime
24
24
 * - random start switch (both for cmdline and playlist modes)
25
 
 * - handle filenames that contain commas (backslash-escape 
26
 
 *   automatically, but avoid double-espaces -> user already
27
 
 *   escaped the commas)
28
25
 * - write some notes about locking issues
29
26
 */
30
27
 
89
86
 * Global variables
90
87
 */
91
88
 
92
 
static const char* ecaplay_version = "20051002-44";    /* ecaplay version */
 
89
static const char* ecaplay_version = "20061206-45";    /* ecaplay version */
93
90
static char ecaplay_next[PATH_MAX];                    /* file to play next */
94
91
static char ecaplay_audio_format[ECAPLAY_AFMT_MAXLEN]; /* audio format to use */
95
92
static const char* ecaplay_output = NULL;              /* output device to use */