diff options
author | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-01-25 01:17:57 +0000 |
---|---|---|
committer | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-01-25 01:17:57 +0000 |
commit | 590e8e71533bb41d7323f158356aa09b209b36b5 (patch) | |
tree | 8b7af270f10c8982f1b4c0c638a504ae30a6e8f8 /libmpdemux | |
parent | 510f186efffc1b3bf282b29e7f2a6b3401e41618 (diff) |
pass vbv_size & max_rate from encoder to muxer over muxer_stream_t (if this is wrong/silly/10000000l then dont hesitate to flame / reverse)
make a few things like mux_rate, mux_max_delay, ... user settable
fixed buffer underflow errors when muxing to mpeg-ps
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17481 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r-- | libmpdemux/muxer.h | 3 | ||||
-rw-r--r-- | libmpdemux/muxer_lavf.c | 21 |
2 files changed, 22 insertions, 2 deletions
diff --git a/libmpdemux/muxer.h b/libmpdemux/muxer.h index cff3bbafd8..353da665e7 100644 --- a/libmpdemux/muxer.h +++ b/libmpdemux/muxer.h @@ -43,6 +43,9 @@ typedef struct { // muxer of that stream struct muxer_t *muxer; void *priv; // private stream specific data stored by the muxer + + int vbv_size; + int max_rate; } muxer_stream_t; typedef struct { diff --git a/libmpdemux/muxer_lavf.c b/libmpdemux/muxer_lavf.c index d95a9ac75c..04130683f6 100644 --- a/libmpdemux/muxer_lavf.c +++ b/libmpdemux/muxer_lavf.c @@ -43,10 +43,19 @@ typedef struct { static char *conf_format = NULL; static int conf_allow_lavf = 0; +static int mux_rate= 0; +static int mux_packet_size= 0; +static float mux_preload= 0.5; +static float mux_max_delay= 0.7; m_option_t lavfopts_conf[] = { {"format", &(conf_format), CONF_TYPE_STRING, 0, 0, 0, NULL}, {"i_certify_that_my_video_stream_does_not_use_b_frames", &conf_allow_lavf, CONF_TYPE_FLAG, 0, 0, 1, NULL}, + {"muxrate", &mux_rate, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, + {"packetsize", &mux_packet_size, CONF_TYPE_INT, CONF_RANGE, 0, INT_MAX, NULL}, + {"preload", &mux_preload, CONF_TYPE_FLOAT, CONF_RANGE, 0, INT_MAX, NULL}, + {"delay", &mux_max_delay, CONF_TYPE_FLOAT, CONF_RANGE, 0, INT_MAX, NULL}, + {NULL, NULL, 0, 0, 0, 0, NULL} }; @@ -173,12 +182,16 @@ static void fix_parameters(muxer_stream_t *stream) ctx = &(spriv->avstream->codec); #endif + if(stream->wf && stream->wf->nAvgBytesPerSec) + ctx->bit_rate = stream->wf->nAvgBytesPerSec * 8; + ctx->rc_buffer_size= stream->vbv_size; + ctx->rc_max_rate= stream->max_rate; + if(stream->type == MUXER_TYPE_AUDIO) { ctx->codec_id = codec_get_wav_id(stream->wf->wFormatTag); ctx->codec_tag = codec_get_wav_tag(ctx->codec_id); mp_msg(MSGT_MUXER, MSGL_INFO, "AUDIO CODEC ID: %x, TAG: %x\n", ctx->codec_id, (uint32_t) ctx->codec_tag); - ctx->bit_rate = stream->wf->nAvgBytesPerSec * 8; ctx->sample_rate = stream->wf->nSamplesPerSec; // mp_msg(MSGT_MUXER, MSGL_INFO, "stream->h.dwSampleSize: %d\n", stream->h.dwSampleSize); ctx->channels = stream->wf->nChannels; @@ -353,7 +366,11 @@ int muxer_init_muxer_lavf(muxer_t *muxer) mp_msg(MSGT_MUXER, MSGL_FATAL, "Invalid output format parameters\n"); goto fail; } - + priv->oc->packet_size= mux_packet_size; + priv->oc->mux_rate= mux_rate; + priv->oc->preload= (int)(mux_preload*AV_TIME_BASE); + priv->oc->max_delay= (int)(mux_max_delay*AV_TIME_BASE); + register_protocol(&mp_protocol); if(url_fopen(&priv->oc->pb, mp_filename, URL_WRONLY)) |