summaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-10-06 22:29:30 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-10-06 22:29:30 +0000
commit2db3c638a753b74bbb67fe3e2f639620a91fb667 (patch)
tree128e0c6d5eee68fba6570559f9abae1ab654a22b /ffmpeg.c
parentca37721277fef7167fbc3545d93faefb0b6566b2 (diff)
downloadffmpeg-streaming-2db3c638a753b74bbb67fe3e2f639620a91fb667.zip
ffmpeg-streaming-2db3c638a753b74bbb67fe3e2f639620a91fb667.tar.gz
user selectable packet_size and mux_rate
Originally committed as revision 3566 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 4cca20e..6af03b2 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -200,6 +200,9 @@ static int audio_disable = 0;
static int audio_channels = 1;
static int audio_codec_id = CODEC_ID_NONE;
+static int mux_rate= 0;
+static int mux_packet_size= 0;
+
static int64_t recording_time = 0;
static int64_t start_time = 0;
static int64_t rec_timestamp = 0;
@@ -3290,6 +3293,9 @@ static void opt_output_file(const char *filename)
exit(1);
}
+ oc->packet_size= mux_packet_size;
+ oc->mux_rate= mux_rate;
+
/* reset some options */
file_oformat = NULL;
file_iformat = NULL;
@@ -3649,6 +3655,9 @@ static void opt_target(const char *arg)
audio_bit_rate = 224000;
audio_sample_rate = 44100;
+
+ mux_packet_size= 2324;
+ mux_rate= 2352 * 75 * 8;
} else if(!strcmp(arg, "svcd")) {
@@ -3668,6 +3677,8 @@ static void opt_target(const char *arg)
audio_bit_rate = 224000;
audio_sample_rate = 44100;
+ mux_packet_size= 2324;
+
} else if(!strcmp(arg, "dvd")) {
opt_video_codec("mpeg2video");
@@ -3865,6 +3876,10 @@ const OptionDef options[] = {
{ "tvstd", HAS_ARG | OPT_EXPERT | OPT_VIDEO | OPT_GRAB, {(void*)opt_video_standard}, "set television standard (NTSC, PAL (SECAM))", "standard" },
{ "dv1394", OPT_EXPERT | OPT_GRAB, {(void*)opt_dv1394}, "set DV1394 grab", "" },
{ "ad", HAS_ARG | OPT_EXPERT | OPT_AUDIO | OPT_GRAB, {(void*)opt_audio_device}, "set audio device", "device" },
+
+ /* muxer options */
+ { "muxrate", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&mux_rate}, "set mux rate", "rate" },
+ { "packetsize", OPT_INT | HAS_ARG | OPT_EXPERT, {(void*)&mux_packet_size}, "set packet size", "size" },
{ NULL, },
};
OpenPOWER on IntegriCloud