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

Windows CE

开发平台:

C/C++

  1. /* test_libFLAC - Unit tester for libFLAC
  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 "FLAC/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. #ifdef FLAC__VALGRIND_TESTING
  29. static size_t local__fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
  30. {
  31. size_t ret = fwrite(ptr, size, nmemb, stream);
  32. if(!ferror(stream))
  33. fflush(stream);
  34. return ret;
  35. }
  36. #else
  37. #define local__fwrite fwrite
  38. #endif
  39. typedef struct {
  40. FILE *file;
  41. } encoder_client_struct;
  42. static FLAC__StreamEncoderWriteStatus encoder_write_callback_(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, void *client_data)
  43. {
  44. encoder_client_struct *ecd = (encoder_client_struct*)client_data;
  45. (void)encoder, (void)samples, (void)current_frame;
  46. if(local__fwrite(buffer, 1, bytes, ecd->file) != bytes)
  47. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  48. else
  49. return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
  50. }
  51. static void encoder_metadata_callback_(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
  52. {
  53. (void)encoder, (void)metadata, (void)client_data;
  54. }
  55. FLAC__bool file_utils__generate_flacfile(const char *output_filename, unsigned *output_filesize, unsigned length, const FLAC__StreamMetadata *streaminfo, FLAC__StreamMetadata **metadata, unsigned num_metadata)
  56. {
  57. FLAC__int32 samples[1024];
  58. FLAC__StreamEncoder *encoder;
  59. encoder_client_struct encoder_client_data;
  60. unsigned i, n;
  61. FLAC__ASSERT(0 != output_filename);
  62. FLAC__ASSERT(0 != streaminfo);
  63. FLAC__ASSERT(streaminfo->type == FLAC__METADATA_TYPE_STREAMINFO);
  64. FLAC__ASSERT((streaminfo->is_last && num_metadata == 0) || (!streaminfo->is_last && num_metadata > 0));
  65. if(0 == (encoder_client_data.file = fopen(output_filename, "wb")))
  66. return false;
  67. encoder = FLAC__stream_encoder_new();
  68. if(0 == encoder) {
  69. fclose(encoder_client_data.file);
  70. return false;
  71. }
  72. FLAC__stream_encoder_set_verify(encoder, true);
  73. FLAC__stream_encoder_set_streamable_subset(encoder, true);
  74. FLAC__stream_encoder_set_do_mid_side_stereo(encoder, false);
  75. FLAC__stream_encoder_set_loose_mid_side_stereo(encoder, false);
  76. FLAC__stream_encoder_set_channels(encoder, streaminfo->data.stream_info.channels);
  77. FLAC__stream_encoder_set_bits_per_sample(encoder, streaminfo->data.stream_info.bits_per_sample);
  78. FLAC__stream_encoder_set_sample_rate(encoder, streaminfo->data.stream_info.sample_rate);
  79. FLAC__stream_encoder_set_blocksize(encoder, streaminfo->data.stream_info.min_blocksize);
  80. FLAC__stream_encoder_set_max_lpc_order(encoder, 0);
  81. FLAC__stream_encoder_set_qlp_coeff_precision(encoder, 0);
  82. FLAC__stream_encoder_set_do_qlp_coeff_prec_search(encoder, false);
  83. FLAC__stream_encoder_set_do_escape_coding(encoder, false);
  84. FLAC__stream_encoder_set_do_exhaustive_model_search(encoder, false);
  85. FLAC__stream_encoder_set_min_residual_partition_order(encoder, 0);
  86. FLAC__stream_encoder_set_max_residual_partition_order(encoder, 0);
  87. FLAC__stream_encoder_set_rice_parameter_search_dist(encoder, 0);
  88. FLAC__stream_encoder_set_total_samples_estimate(encoder, streaminfo->data.stream_info.total_samples);
  89. FLAC__stream_encoder_set_metadata(encoder, metadata, num_metadata);
  90. FLAC__stream_encoder_set_write_callback(encoder, encoder_write_callback_);
  91. FLAC__stream_encoder_set_metadata_callback(encoder, encoder_metadata_callback_);
  92. FLAC__stream_encoder_set_client_data(encoder, &encoder_client_data);
  93. if(FLAC__stream_encoder_init(encoder) != FLAC__STREAM_ENCODER_OK) {
  94. fclose(encoder_client_data.file);
  95. return false;
  96. }
  97. /* init the dummy sample buffer */
  98. for(i = 0; i < sizeof(samples) / sizeof(FLAC__int32); i++)
  99. samples[i] = i & 7;
  100. while(length > 0) {
  101. n = min(length, sizeof(samples) / sizeof(FLAC__int32));
  102. if(!FLAC__stream_encoder_process_interleaved(encoder, samples, n)) {
  103. fclose(encoder_client_data.file);
  104. return false;
  105. }
  106. length -= n;
  107. }
  108. FLAC__stream_encoder_finish(encoder);
  109. fclose(encoder_client_data.file);
  110. FLAC__stream_encoder_delete(encoder);
  111. if(0 != output_filesize) {
  112. struct stat filestats;
  113. if(stat(output_filename, &filestats) != 0)
  114. return false;
  115. else
  116. *output_filesize = (unsigned)filestats.st_size;
  117. }
  118. return true;
  119. }