summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-10-01 17:03:42 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-10-01 17:03:42 +0200
commit25003e4307ab913e7a7886e9f454db021246e331 (patch)
tree042e3a39ad964414f69ee370c754ad0bac2643ae
parent799b19c2f2786c211229a7b837058303326083ba (diff)
Revert "ffenc: Make sure to always provide large enough buffers"
-rw-r--r--ext/ffmpeg/gstffmpegenc.c21
1 files changed, 5 insertions, 16 deletions
diff --git a/ext/ffmpeg/gstffmpegenc.c b/ext/ffmpeg/gstffmpegenc.c
index c8dc9eb..8f97c2d 100644
--- a/ext/ffmpeg/gstffmpegenc.c
+++ b/ext/ffmpeg/gstffmpegenc.c
@@ -642,19 +642,13 @@ gst_ffmpegenc_setcaps (GstPad * pad, GstCaps * caps)
static void
ffmpegenc_setup_working_buf (GstFFMpegEnc * ffmpegenc)
{
- guint wanted_size =
- ffmpegenc->context->width * ffmpegenc->context->height * 6 + 200;
-
- /* Above is the buffer size used by ffmpeg/ffmpeg.c */
-
if (ffmpegenc->working_buf == NULL ||
- ffmpegenc->working_buf_size != wanted_size) {
+ ffmpegenc->working_buf_size != ffmpegenc->buffer_size) {
if (ffmpegenc->working_buf)
g_free (ffmpegenc->working_buf);
- ffmpegenc->working_buf_size = wanted_size;
+ ffmpegenc->working_buf_size = ffmpegenc->buffer_size;
ffmpegenc->working_buf = g_malloc (ffmpegenc->working_buf_size);
}
- ffmpegenc->buffer_size = wanted_size;
}
static GstFlowReturn
@@ -748,8 +742,6 @@ gst_ffmpegenc_encode_audio (GstFFMpegEnc * ffmpegenc, guint8 * audio_in,
audio_out = GST_BUFFER_DATA (outbuf);
GST_LOG_OBJECT (ffmpegenc, "encoding buffer of max size %d", max_size);
- if (ffmpegenc->buffer_size != max_size)
- ffmpegenc->buffer_size = max_size;
res = avcodec_encode_audio (ctx, audio_out, max_size, (short *) audio_in);
@@ -857,9 +849,8 @@ gst_ffmpegenc_chain_audio (GstPad * pad, GstBuffer * inbuf)
ctx->sample_rate);
duration -= (timestamp - ffmpegenc->adapter_ts);
- /* 4 times the input size plus the minimal buffer size
- * should be big enough... */
- out_size = frame_bytes * 4 + FF_MIN_BUFFER_SIZE;
+ /* 4 times the input size should be big enough... */
+ out_size = MAX (frame_bytes * 4, FF_MIN_BUFFER_SIZE);
ret = gst_ffmpegenc_encode_audio (ffmpegenc, in_data, out_size,
timestamp, duration, ffmpegenc->discont);
@@ -887,9 +878,6 @@ gst_ffmpegenc_chain_audio (GstPad * pad, GstBuffer * inbuf)
if (coded_bps)
out_size *= coded_bps;
- /* We need to provide at least ffmpegs minimal buffer size */
- out_size += FF_MIN_BUFFER_SIZE;
-
in_data = (guint8 *) GST_BUFFER_DATA (inbuf);
ret = gst_ffmpegenc_encode_audio (ffmpegenc, in_data, out_size,
timestamp, duration, discont);
@@ -1050,6 +1038,7 @@ gst_ffmpegenc_set_property (GObject * object,
ffmpegenc->me_method = g_value_get_enum (value);
break;
case ARG_BUFSIZE:
+ ffmpegenc->buffer_size = g_value_get_ulong (value);
break;
case ARG_RTP_PAYLOAD_SIZE:
ffmpegenc->rtp_payload_size = g_value_get_ulong (value);