Index: uspace/lib/pcm/src/format.c
===================================================================
--- uspace/lib/pcm/src/format.c	(revision 1f7da3b6b3615f4e718b66c7dd10fe063e689e6f)
+++ uspace/lib/pcm/src/format.c	(revision 842eecdd6f82b689a612a0107057725b919e8a61)
@@ -74,4 +74,16 @@
 #define from(x, type, endian) (float)(type ## _ ## endian ## 2host(x))
 #define to(x, type, endian) (float)(host2 ## type ## _ ## endian(x))
+
+const pcm_format_t AUDIO_FORMAT_DEFAULT = {
+	.channels = 2,
+	.sampling_rate = 44100,
+	.sample_format = PCM_SAMPLE_SINT16_LE,
+	};
+
+const pcm_format_t AUDIO_FORMAT_ANY = {
+	.channels = 0,
+	.sampling_rate = 0,
+	.sample_format = 0,
+	};
 
 static float get_normalized_sample(const void *buffer, size_t size,
