diff DOCS/tech/realcodecs/audio-codecs.txt @ 30990:0ad2da052b2e

the great MPlayer tab removal: part I
author diego
date Mon, 12 Apr 2010 10:56:17 +0000
parents 32725ca88fed
children
line wrap: on
line diff
--- a/DOCS/tech/realcodecs/audio-codecs.txt	Mon Apr 12 08:03:39 2010 +0000
+++ b/DOCS/tech/realcodecs/audio-codecs.txt	Mon Apr 12 10:56:17 2010 +0000
@@ -38,17 +38,17 @@
 
 ulong result=RAInitDecoder(ra_main_t *raMain, ra_init_struct *raInit);
 struct ra_init_struct {
-	ulong sample_rate;
-	ushort bits_per_sample;	// unused by RAInitDecoder
-	ushort number_of_channels;
-	ushort unknown1;	// 0
-	ushort unknown2;	// also unused (100)
-	ulong leaf_size;	// leaf size (used for interleaving, but
-				// exists in audio stream description header (ASDH))
-	ulong block_align;	// packet size
-	ulong bits_per_sample;	// unused (always 16)
-	char *ext_data;		// 16 bytes located at the end of the
-				// ASDH
+        ulong sample_rate;
+        ushort bits_per_sample; // unused by RAInitDecoder
+        ushort number_of_channels;
+        ushort unknown1;        // 0
+        ushort unknown2;        // also unused (100)
+        ulong leaf_size;        // leaf size (used for interleaving, but
+                                // exists in audio stream description header (ASDH))
+        ulong block_align;      // packet size
+        ulong bits_per_sample;  // unused (always 16)
+        char *ext_data;         // 16 bytes located at the end of the
+                                // ASDH
 };
 
 There are some information missing that you usually need for playback,
@@ -61,7 +61,7 @@
 
 
 void *GetRAFlavorProperty(ra_main_t *raMain, ulong flavor, ulong property,
-	short *property_length_in_bytes);
+        short *property_length_in_bytes);
 returns property data for a specific data
 
 This is not important, because it's just a read only function.
@@ -69,8 +69,8 @@
 
 
 ulong RADecode(ra_main_t *raMain, char *input_buffer,
-	ulong input_buffer_size, char *output_buffer,
-	ulong *decoded_bytes, ulong p6=-1);
+        ulong input_buffer_size, char *output_buffer,
+        ulong *decoded_bytes, ulong p6=-1);
 
 RAFreeDecoder(ra_main_t *);