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

« back to all changes in this revision

Viewing changes to libecasound/eca-audio-format.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2007-04-22 01:25:44 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070422012544-lugfjb034udblalb
Tags: 2.4.5-1
* new upstream release
* build-depend on texlive
* pbuilder-test: error code changed from '-1' to '1', so update test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
 
137
137
    case sfmt_s24_be:
138
138
      sc_rep = sc_signed;
139
 
      update_sample_endianess(se_little);
 
139
      update_sample_endianess(se_big);
140
140
      align_rep = 3;
141
141
      break;
142
142
 
160
160
 
161
161
    case sfmt_s32_be:
162
162
      sc_rep = sc_signed;
163
 
      update_sample_endianess(se_little);
 
163
      update_sample_endianess(se_big);
164
164
      align_rep = 4;
165
165
      break;
166
166