diff options
author | Lukasz Marek <lukasz.m.luki@gmail.com> | 2013-11-24 02:35:33 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-11-27 10:12:54 +0100 |
commit | 3aaa50a9972c9f350ad9ce6decf3ecb2aaffa84a (patch) | |
tree | c0963c38a5a7dc7a6cf5dc9b8f5b2e0507f99f1e /libavdevice/pulse_audio_enc.c | |
parent | a12b4bd107cf028e44cab8dafca61a866cecd252 (diff) | |
download | ffmpeg-3aaa50a9972c9f350ad9ce6decf3ecb2aaffa84a.tar.gz |
lavd/pulse_audio_enc: add buffer size control options
Add options to control the size of the PulseAudio buffer.
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'libavdevice/pulse_audio_enc.c')
-rw-r--r-- | libavdevice/pulse_audio_enc.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libavdevice/pulse_audio_enc.c b/libavdevice/pulse_audio_enc.c index a2abc4aea5..e047299391 100644 --- a/libavdevice/pulse_audio_enc.c +++ b/libavdevice/pulse_audio_enc.c @@ -35,6 +35,8 @@ typedef struct PulseData { const char *device; pa_simple *pa; int64_t timestamp; + int buffer_size; + int buffer_duration; } PulseData; static av_cold int pulse_write_header(AVFormatContext *h) @@ -59,6 +61,19 @@ static av_cold int pulse_write_header(AVFormatContext *h) stream_name = "Playback"; } + if (s->buffer_duration) { + int64_t bytes = s->buffer_duration; + bytes *= st->codec->channels * st->codec->sample_rate * + av_get_bytes_per_sample(st->codec->sample_fmt); + bytes /= 1000; + attr.tlength = FFMAX(s->buffer_size, av_clip64(bytes, 0, UINT32_MAX - 1)); + av_log(s, AV_LOG_DEBUG, + "Buffer duration: %ums recalculated into %"PRId64" bytes buffer.\n", + s->buffer_duration, bytes); + av_log(s, AV_LOG_DEBUG, "Real buffer length is %u bytes\n", attr.tlength); + } else if (s->buffer_size) + attr.tlength = s->buffer_size; + ss.format = ff_codec_id_to_pulse_format(st->codec->codec_id); ss.rate = st->codec->sample_rate; ss.channels = st->codec->channels; @@ -142,6 +157,8 @@ static const AVOption options[] = { { "name", "set application name", OFFSET(name), AV_OPT_TYPE_STRING, {.str = LIBAVFORMAT_IDENT}, 0, 0, E }, { "stream_name", "set stream description", OFFSET(stream_name), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E }, { "device", "set device name", OFFSET(device), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, E }, + { "buffer_size", "set buffer size in bytes", OFFSET(buffer_size), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E }, + { "buffer_duration", "set buffer duration in millisecs", OFFSET(buffer_duration), AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX, E }, { NULL } }; |