Mercurial > hg > sv-dependency-builds
annotate src/libsndfile-1.0.25/tests/rdwr_test.def @ 0:c7265573341e
Import initial set of sources
author | Chris Cannam |
---|---|
date | Mon, 18 Mar 2013 14:12:14 +0000 |
parents | |
children |
rev | line source |
---|---|
Chris@0 | 1 autogen definitions rdwr_test.tpl; |
Chris@0 | 2 |
Chris@0 | 3 data_type = { |
Chris@0 | 4 name = "short" ; |
Chris@0 | 5 type = "short" ; |
Chris@0 | 6 format = "SF_FORMAT_PCM_16" ; |
Chris@0 | 7 } ; |
Chris@0 | 8 |
Chris@0 | 9 data_type = { |
Chris@0 | 10 name = "int" ; |
Chris@0 | 11 type = "int" ; |
Chris@0 | 12 format = "SF_FORMAT_PCM_32" ; |
Chris@0 | 13 } ; |
Chris@0 | 14 |
Chris@0 | 15 data_type = { |
Chris@0 | 16 name = "float" ; |
Chris@0 | 17 type = "float" ; |
Chris@0 | 18 format = "SF_FORMAT_FLOAT" ; |
Chris@0 | 19 } ; |
Chris@0 | 20 |
Chris@0 | 21 data_type = { |
Chris@0 | 22 name = "double" ; |
Chris@0 | 23 type = "double" ; |
Chris@0 | 24 format = "SF_FORMAT_DOUBLE" ; |
Chris@0 | 25 } ; |
Chris@0 | 26 |
Chris@0 | 27 data_type = { |
Chris@0 | 28 name = "raw" ; |
Chris@0 | 29 type = "unsigned char" ; |
Chris@0 | 30 format = "SF_FORMAT_PCM_U8" ; |
Chris@0 | 31 } ; |
Chris@0 | 32 |