Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
95127040
Commit
95127040
authored
Feb 25, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output: set a GLib log domain
parent
d56ae1e9
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
output_all.c
src/output_all.c
+3
-0
output_init.c
src/output_init.c
+3
-0
output_thread.c
src/output_thread.c
+4
-0
No files found.
src/output_all.c
View file @
95127040
...
@@ -24,6 +24,9 @@
...
@@ -24,6 +24,9 @@
#include <assert.h>
#include <assert.h>
#include <string.h>
#include <string.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "output"
static
struct
audio_format
input_audio_format
;
static
struct
audio_format
input_audio_format
;
static
struct
audio_output
*
audio_outputs
;
static
struct
audio_output
*
audio_outputs
;
...
...
src/output_init.c
View file @
95127040
...
@@ -24,6 +24,9 @@
...
@@ -24,6 +24,9 @@
#include <glib.h>
#include <glib.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "output"
#define AUDIO_OUTPUT_TYPE "type"
#define AUDIO_OUTPUT_TYPE "type"
#define AUDIO_OUTPUT_NAME "name"
#define AUDIO_OUTPUT_NAME "name"
#define AUDIO_OUTPUT_FORMAT "format"
#define AUDIO_OUTPUT_FORMAT "format"
...
...
src/output_thread.c
View file @
95127040
...
@@ -21,10 +21,14 @@
...
@@ -21,10 +21,14 @@
#include "output_internal.h"
#include "output_internal.h"
#include <glib.h>
#include <glib.h>
#include <assert.h>
#include <assert.h>
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "output"
enum
{
enum
{
/** after a failure, wait this number of seconds before
/** after a failure, wait this number of seconds before
automatically reopening the device */
automatically reopening the device */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment