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

Windows CE

开发平台:

C/C++

  1. /* grabbag - Convenience lib for various routines common to several tools
  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 "share/grabbag.h"
  19. #include "FLAC/assert.h"
  20. #include <stdlib.h> /* for atoi() */
  21. #include <string.h>
  22. FLAC__bool grabbag__seektable_convert_specification_to_template(const char *spec, FLAC__bool only_explicit_placeholders, FLAC__uint64 total_samples_to_encode, unsigned sample_rate, FLAC__StreamMetadata *seektable_template, FLAC__bool *spec_has_real_points)
  23. {
  24. unsigned i;
  25. const char *pt;
  26. FLAC__ASSERT(0 != spec);
  27. FLAC__ASSERT(0 != seektable_template);
  28. FLAC__ASSERT(seektable_template->type = FLAC__METADATA_TYPE_SEEKTABLE);
  29. if(0 != spec_has_real_points)
  30. *spec_has_real_points = false;
  31. for(pt = spec, i = 0; pt && *pt; i++) {
  32. const char *q = strchr(pt, ';');
  33. FLAC__ASSERT(0 != q);
  34. if(q > pt) {
  35. if(0 == strncmp(pt, "X;", 2)) { /* -S X */
  36. if(!FLAC__metadata_object_seektable_template_append_placeholders(seektable_template, 1))
  37. return false;
  38. }
  39. else if(q[-1] == 'x') { /* -S #x */
  40. if(total_samples_to_encode > 0) { /* we can only do these if we know the number of samples to encode up front */
  41. if(0 != spec_has_real_points)
  42. *spec_has_real_points = true;
  43. if(!only_explicit_placeholders) {
  44. if(!FLAC__metadata_object_seektable_template_append_spaced_points(seektable_template, atoi(pt), total_samples_to_encode))
  45. return false;
  46. }
  47. }
  48. }
  49. else if(q[-1] == 's') { /* -S #s */
  50. if(total_samples_to_encode > 0) { /* we can only do these if we know the number of samples to encode up front */
  51. FLAC__ASSERT(sample_rate > 0);
  52. if(0 != spec_has_real_points)
  53. *spec_has_real_points = true;
  54. if(!only_explicit_placeholders) {
  55. double sec = atof(pt);
  56. if(sec > 0.0) {
  57. #if defined _MSC_VER || defined __MINGW32__
  58. /* with MSVC you have to spoon feed it the casting */
  59. unsigned n = (unsigned)((double)(FLAC__int64)total_samples_to_encode / (sec * (double)sample_rate));
  60. #else
  61. unsigned n = (unsigned)((double)total_samples_to_encode / (sec * (double)sample_rate));
  62. #endif
  63. if(!FLAC__metadata_object_seektable_template_append_spaced_points(seektable_template, n, total_samples_to_encode))
  64. return false;
  65. }
  66. }
  67. }
  68. }
  69. else { /* -S # */
  70. if(0 != spec_has_real_points)
  71. *spec_has_real_points = true;
  72. if(!only_explicit_placeholders) {
  73. FLAC__uint64 n = (unsigned)atoi(pt);
  74. if(!FLAC__metadata_object_seektable_template_append_point(seektable_template, n))
  75. return false;
  76. }
  77. }
  78. }
  79. pt = ++q;
  80. }
  81. if(!FLAC__metadata_object_seektable_template_sort(seektable_template, /*compact=*/true))
  82. return false;
  83. return true;
  84. }