37 struct sample_fmt_entry {
39 } sample_fmt_entries[] = {
49 struct sample_fmt_entry *entry = &sample_fmt_entries[i];
50 if (sample_fmt == entry->sample_fmt) {
51 *fmt =
AV_NE(entry->fmt_be, entry->fmt_le);
57 "Sample format %s not supported as output format\n",
69 const double c = 2 *
M_PI * 440.0;
72 for (i = 0; i < nb_samples; i++) {
81 int main(
int argc,
char **argv)
84 int src_rate = 48000, dst_rate = 44100;
85 uint8_t **src_data = NULL, **dst_data = NULL;
86 int src_nb_channels = 0, dst_nb_channels = 0;
87 int src_linesize, dst_linesize;
90 const char *dst_filename = NULL;
99 fprintf(stderr,
"Usage: %s output_file\n"
100 "API example program to show how to resample an audio stream with libswresample.\n"
101 "This program generates a series of audio frames, resamples them to a specified "
102 "output format and rate and saves them to an output file named output_file.\n",
106 dst_filename = argv[1];
108 dst_file = fopen(dst_filename,
"wb");
110 fprintf(stderr,
"Could not open destination file %s\n", dst_filename);
117 fprintf(stderr,
"Could not allocate resampler context\n");
132 if ((ret =
swr_init(swr_ctx)) < 0) {
133 fprintf(stderr,
"Failed to initialize the resampling context\n");
141 src_nb_samples, src_sample_fmt, 0);
143 fprintf(stderr,
"Could not allocate source samples\n");
150 max_dst_nb_samples = dst_nb_samples =
156 dst_nb_samples, dst_sample_fmt, 0);
158 fprintf(stderr,
"Could not allocate destination samples\n");
165 fill_samples((
double *)src_data[0], src_nb_samples, src_nb_channels, src_rate, &t);
170 if (dst_nb_samples > max_dst_nb_samples) {
173 dst_nb_samples, dst_sample_fmt, 1);
176 max_dst_nb_samples = dst_nb_samples;
180 ret =
swr_convert(swr_ctx, dst_data, dst_nb_samples, (
const uint8_t **)src_data, src_nb_samples);
182 fprintf(stderr,
"Error while converting\n");
186 ret, dst_sample_fmt, 1);
187 printf(
"t:%f in:%d out:%d\n", t, src_nb_samples, ret);
188 fwrite(dst_data[0], 1, dst_bufsize, dst_file);
193 fprintf(stderr,
"Resampling succeeded. Play the output file with the command:\n"
194 "ffplay -f %s -channel_layout %"PRId64
" -channels %d -ar %d %s\n",
195 fmt, dst_ch_layout, dst_nb_channels, dst_rate, dst_filename);