4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 // work around (centos) for __STDC_CONSTANT_MACROS
33 # define INT64_MAX 9223372036854775807LL
38 #include "libavcodec/avcodec.h"
47 #include "mainerror.h"
53 FileAC3::FileAC3(Asset *asset, File *file)
54 : FileBase(asset, file)
62 if( mpg_file ) delete mpg_file;
66 int FileAC3::reset_parameters_derived()
74 temp_raw_allocated = 0;
76 compressed_allocated = 0;
80 void FileAC3::get_parameters(BC_WindowBase *parent_window,
82 BC_WindowBase* &format_window,
89 AC3ConfigAudio *window = new AC3ConfigAudio(parent_window, asset);
90 format_window = window;
91 window->create_objects();
97 int FileAC3::check_sig()
99 // Libmpeg3 does this in FileMPEG.
103 int64_t FileAC3::get_channel_layout(int channels)
106 case 1: return AV_CH_LAYOUT_MONO;
107 case 2: return AV_CH_LAYOUT_STEREO;
108 case 3: return AV_CH_LAYOUT_SURROUND;
109 case 4: return AV_CH_LAYOUT_QUAD;
110 case 5: return AV_CH_LAYOUT_5POINT0;
111 case 6: return AV_CH_LAYOUT_5POINT1;
112 case 8: return AV_CH_LAYOUT_7POINT1;
117 int FileAC3::open_file(int rd, int wr)
124 mpg_file = new FileMPEG(file->asset, file);
125 result = mpg_file->open_file(1, 0);
127 eprintf(_("Error while opening \"%s\" for reading. \n%m\n"), asset->path);
134 avcodec_register_all();
135 codec = avcodec_find_encoder(AV_CODEC_ID_AC3);
138 eprintf(_("FileAC3::open_file codec not found.\n"));
141 if( !result && !(fd = fopen(asset->path, "w")))
143 eprintf(_("Error while opening \"%s\" for writing. \n%m\n"), asset->path);
147 int channels = asset->channels;
148 int sample_rate = asset->sample_rate;
149 int64_t layout = get_channel_layout(channels);
150 int bitrate = asset->ac3_bitrate * 1000;
151 codec_context = avcodec_alloc_context3(codec);
152 codec_context->bit_rate = bitrate;
153 codec_context->sample_rate = sample_rate;
154 codec_context->channels = channels;
155 codec_context->channel_layout = layout;
156 codec_context->sample_fmt = codec->sample_fmts[0];
157 resample_context = swr_alloc_set_opts(NULL,
158 layout, codec_context->sample_fmt, sample_rate,
159 layout, AV_SAMPLE_FMT_S16, sample_rate,
161 swr_init(resample_context);
162 if(avcodec_open2(codec_context, codec, 0))
164 eprintf(_("FileAC3::open_file failed to open codec.\n"));
173 int FileAC3::close_file()
182 avcodec_close(codec_context);
183 avcodec_free_context(&codec_context);
186 if( resample_context )
187 swr_free(&resample_context);
200 delete [] temp_compressed;
204 FileBase::close_file();
208 int FileAC3::read_samples(double *buffer, int64_t len)
210 return !mpg_file ? 0 : mpg_file->read_samples(buffer, len);
213 int FileAC3::get_index(IndexFile *index_file, MainProgressBar *progress_bar)
215 return !mpg_file ? 1 : mpg_file->get_index(index_file, progress_bar);
218 // Channel conversion matrices because ffmpeg encodes a
219 // different channel order than liba52 decodes.
220 // Each row is an output channel.
221 // Each column is an input channel.
222 // static int channels5[] =
227 // static int channels6[] =
233 int FileAC3::write_samples(double **buffer, int64_t len)
235 // Convert buffer to encoder format
236 if(temp_raw_size + len > temp_raw_allocated)
238 int new_allocated = temp_raw_size + len;
239 int16_t *new_raw = new int16_t[new_allocated * asset->channels];
244 sizeof(int16_t) * temp_raw_size * asset->channels);
248 temp_raw_allocated = new_allocated;
251 // Allocate compressed data buffer
252 if(temp_raw_allocated * asset->channels * 2 > compressed_allocated)
254 compressed_allocated = temp_raw_allocated * asset->channels * 2;
255 delete [] temp_compressed;
256 temp_compressed = new unsigned char[compressed_allocated];
259 // Append buffer to temp raw
260 int16_t *out_ptr = temp_raw + temp_raw_size * asset->channels;
261 for(int i = 0; i < len; i++)
263 for(int j = 0; j < asset->channels; j++)
265 int sample = (int)(buffer[j][i] * 32767);
266 CLAMP(sample, -32768, 32767);
270 temp_raw_size += len;
272 AVCodecContext *&avctx = codec_context;
273 int frame_size = avctx->frame_size;
274 int output_size = 0, cur_sample = 0, ret = 0;
275 for(cur_sample = 0; !ret &&
276 cur_sample + frame_size <= temp_raw_size;
277 cur_sample += frame_size)
280 av_init_packet(&avpkt);
281 avpkt.data = temp_compressed + output_size;
282 avpkt.size = compressed_allocated - output_size;
283 AVFrame *frame = av_frame_alloc();
284 frame->nb_samples = frame_size;
285 frame->format = avctx->sample_fmt;
286 frame->channel_layout = avctx->channel_layout;
287 frame->sample_rate = avctx->sample_rate;
288 ret = av_frame_get_buffer(frame, 0);
290 const uint8_t *samples = (uint8_t *)temp_raw +
291 cur_sample * sizeof(int16_t) * asset->channels;
292 ret = swr_convert(resample_context,
293 (uint8_t **)frame->extended_data, frame_size,
294 &samples, frame_size);
297 frame->pts = avctx->sample_rate && avctx->time_base.num ?
298 file->get_audio_position() : AV_NOPTS_VALUE ;
300 ret = avcodec_encode_audio2(avctx, &avpkt, frame, &got_packet);
302 char errmsg[BCSTRLEN];
303 av_strerror(ret, errmsg, sizeof(errmsg));
304 fprintf(stderr, "avcodec_encode_audio2 failed. \n%s\n", errmsg);
307 av_packet_free_side_data(&avpkt);
308 output_size += avpkt.size;
309 if(frame->extended_data != frame->data)
310 av_freep(&frame->extended_data);
311 av_frame_free(&frame);
316 temp_raw + cur_sample * asset->channels,
317 (temp_raw_size - cur_sample) * sizeof(int16_t) * asset->channels);
318 temp_raw_size -= cur_sample;
320 int bytes_written = fwrite(temp_compressed, 1, output_size, fd);
321 if(bytes_written < output_size)
323 eprintf(_("Error while writing samples. \n%m\n"));
335 AC3ConfigAudio::AC3ConfigAudio(BC_WindowBase *parent_window,
337 : BC_Window(_(PROGRAM_NAME ": Audio Compression"),
338 parent_window->get_abs_cursor_x(1),
339 parent_window->get_abs_cursor_y(1),
341 BC_OKButton::calculate_h() + 100,
343 BC_OKButton::calculate_h() + 100,
348 this->parent_window = parent_window;
352 void AC3ConfigAudio::create_objects()
356 lock_window("AC3ConfigAudio::create_objects");
357 add_tool(new BC_Title(x, y, _("Bitrate (kbps):")));
358 AC3ConfigAudioBitrate *bitrate;
360 new AC3ConfigAudioBitrate(this,
363 bitrate->create_objects();
365 add_subwindow(new BC_OKButton(this));
370 int AC3ConfigAudio::close_event()
381 AC3ConfigAudioBitrate::AC3ConfigAudioBitrate(AC3ConfigAudio *gui,
387 AC3ConfigAudioBitrate::bitrate_to_string(gui->string, gui->asset->ac3_bitrate))
392 char* AC3ConfigAudioBitrate::bitrate_to_string(char *string, int bitrate)
394 sprintf(string, "%d", bitrate);
398 void AC3ConfigAudioBitrate::create_objects()
400 add_item(new BC_MenuItem("32"));
401 add_item(new BC_MenuItem("40"));
402 add_item(new BC_MenuItem("48"));
403 add_item(new BC_MenuItem("56"));
404 add_item(new BC_MenuItem("64"));
405 add_item(new BC_MenuItem("80"));
406 add_item(new BC_MenuItem("96"));
407 add_item(new BC_MenuItem("112"));
408 add_item(new BC_MenuItem("128"));
409 add_item(new BC_MenuItem("160"));
410 add_item(new BC_MenuItem("192"));
411 add_item(new BC_MenuItem("224"));
412 add_item(new BC_MenuItem("256"));
413 add_item(new BC_MenuItem("320"));
414 add_item(new BC_MenuItem("384"));
415 add_item(new BC_MenuItem("448"));
416 add_item(new BC_MenuItem("512"));
417 add_item(new BC_MenuItem("576"));
418 add_item(new BC_MenuItem("640"));
421 int AC3ConfigAudioBitrate::handle_event()
423 gui->asset->ac3_bitrate = atol(get_text());