file_utils.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:5k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* test_libOggFLAC - Unit tester for libOggFLAC
  2.  * Copyright (C) 2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include "file_utils.h"
  19. #include "FLAC/assert.h"
  20. #include "OggFLAC/stream_encoder.h"
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <sys/stat.h> /* for stat() */
  24. #ifdef min
  25. #undef min
  26. #endif
  27. #define min(a,b) ((a)<(b)?(a):(b))
  28. const long file_utils__serial_number = 12345;
  29. #ifdef FLAC__VALGRIND_TESTING
  30. static size_t local__fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
  31. {
  32. size_t ret = fwrite(ptr, size, nmemb, stream);
  33. if(!ferror(stream))
  34. fflush(stream);
  35. return ret;
  36. }
  37. #else
  38. #define local__fwrite fwrite
  39. #endif
  40. typedef struct {
  41. FILE *file;
  42. } encoder_client_struct;
  43. static FLAC__StreamEncoderWriteStatus encoder_write_callback_(const OggFLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
  44. {
  45. encoder_client_struct *ecd = (encoder_client_struct*)client_data;
  46. (void)encoder, (void)samples, (void)current_frame;
  47. if(local__fwrite(buffer, 1, bytes, ecd->file) != bytes)
  48. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  49. else
  50. return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
  51. }
  52. static void encoder_metadata_callback_(const OggFLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
  53. {
  54. (void)encoder, (void)metadata, (void)client_data;
  55. }
  56. FLAC__bool file_utils__generate_oggflacfile(const char *output_filename, unsigned *output_filesize, unsigned length, const FLAC__StreamMetadata *streaminfo, FLAC__StreamMetadata **metadata, unsigned num_metadata)
  57. {
  58. FLAC__int32 samples[1024];
  59. OggFLAC__StreamEncoder *encoder;
  60. encoder_client_struct encoder_client_data;
  61. unsigned i, n;
  62. FLAC__ASSERT(0 != output_filename);
  63. FLAC__ASSERT(0 != streaminfo);
  64. FLAC__ASSERT(streaminfo->type == FLAC__METADATA_TYPE_STREAMINFO);
  65. FLAC__ASSERT((streaminfo->is_last && num_metadata == 0) || (!streaminfo->is_last && num_metadata > 0));
  66. if(0 == (encoder_client_data.file = fopen(output_filename, "wb")))
  67. return false;
  68. encoder = OggFLAC__stream_encoder_new();
  69. if(0 == encoder) {
  70. fclose(encoder_client_data.file);
  71. return false;
  72. }
  73. OggFLAC__stream_encoder_set_serial_number(encoder, file_utils__serial_number);
  74. OggFLAC__stream_encoder_set_verify(encoder, true);
  75. OggFLAC__stream_encoder_set_streamable_subset(encoder, true);
  76. OggFLAC__stream_encoder_set_do_mid_side_stereo(encoder, false);
  77. OggFLAC__stream_encoder_set_loose_mid_side_stereo(encoder, false);
  78. OggFLAC__stream_encoder_set_channels(encoder, streaminfo->data.stream_info.channels);
  79. OggFLAC__stream_encoder_set_bits_per_sample(encoder, streaminfo->data.stream_info.bits_per_sample);
  80. OggFLAC__stream_encoder_set_sample_rate(encoder, streaminfo->data.stream_info.sample_rate);
  81. OggFLAC__stream_encoder_set_blocksize(encoder, streaminfo->data.stream_info.min_blocksize);
  82. OggFLAC__stream_encoder_set_max_lpc_order(encoder, 0);
  83. OggFLAC__stream_encoder_set_qlp_coeff_precision(encoder, 0);
  84. OggFLAC__stream_encoder_set_do_qlp_coeff_prec_search(encoder, false);
  85. OggFLAC__stream_encoder_set_do_escape_coding(encoder, false);
  86. OggFLAC__stream_encoder_set_do_exhaustive_model_search(encoder, false);
  87. OggFLAC__stream_encoder_set_min_residual_partition_order(encoder, 0);
  88. OggFLAC__stream_encoder_set_max_residual_partition_order(encoder, 0);
  89. OggFLAC__stream_encoder_set_rice_parameter_search_dist(encoder, 0);
  90. OggFLAC__stream_encoder_set_total_samples_estimate(encoder, streaminfo->data.stream_info.total_samples);
  91. OggFLAC__stream_encoder_set_metadata(encoder, metadata, num_metadata);
  92. OggFLAC__stream_encoder_set_write_callback(encoder, encoder_write_callback_);
  93. OggFLAC__stream_encoder_set_metadata_callback(encoder, encoder_metadata_callback_);
  94. OggFLAC__stream_encoder_set_client_data(encoder, &encoder_client_data);
  95. if(OggFLAC__stream_encoder_init(encoder) != OggFLAC__STREAM_ENCODER_OK) {
  96. fclose(encoder_client_data.file);
  97. return false;
  98. }
  99. /* init the dummy sample buffer */
  100. for(i = 0; i < sizeof(samples) / sizeof(FLAC__int32); i++)
  101. samples[i] = i & 7;
  102. while(length > 0) {
  103. n = min(length, sizeof(samples) / sizeof(FLAC__int32));
  104. if(!OggFLAC__stream_encoder_process_interleaved(encoder, samples, n)) {
  105. fclose(encoder_client_data.file);
  106. return false;
  107. }
  108. length -= n;
  109. }
  110. OggFLAC__stream_encoder_finish(encoder);
  111. fclose(encoder_client_data.file);
  112. OggFLAC__stream_encoder_delete(encoder);
  113. if(0 != output_filesize) {
  114. struct stat filestats;
  115. if(stat(output_filename, &filestats) != 0)
  116. return false;
  117. else
  118. *output_filesize = (unsigned)filestats.st_size;
  119. }
  120. return true;
  121. }