Commit 0abfb0a9 authored by Michael Niedermayer's avatar Michael Niedermayer

vocenc: change default codec to 16bit

Hardly anyone would want 8bit today, 16bit is a much more reasonable
default.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bacbbd2b
......@@ -95,7 +95,7 @@ AVOutputFormat ff_voc_muxer = {
.mime_type = "audio/x-voc",
.extensions = "voc",
.priv_data_size = sizeof(VocEncContext),
.audio_codec = CODEC_ID_PCM_U8,
.audio_codec = CODEC_ID_PCM_S16LE,
.video_codec = CODEC_ID_NONE,
.write_header = voc_write_header,
.write_packet = voc_write_packet,
......
......@@ -282,7 +282,7 @@ do_audio_only aif
fi
if [ -n "$do_voc" ] ; then
do_audio_only voc
do_audio_only voc "" "-acodec pcm_u8"
fi
if [ -n "$do_voc_s16" ] ; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment