summaryrefslogtreecommitdiff
path: root/rotord/src
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/src')
-rwxr-xr-xrotord/src/libavwrapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rotord/src/libavwrapper.cpp b/rotord/src/libavwrapper.cpp
index 4e545ac..7c00b91 100755
--- a/rotord/src/libavwrapper.cpp
+++ b/rotord/src/libavwrapper.cpp
@@ -1052,7 +1052,7 @@ AVStream* libav::exporter::add_stream(AVFormatContext *oc, AVCodec **codec,enum
case AVMEDIA_TYPE_AUDIO:
st->id = 1;
c->sample_fmt = AV_SAMPLE_FMT_S16;
- c->bit_rate = 64000;
+ c->bit_rate = 256000;
c->sample_rate = 44100;
c->channels = 2;
c->channel_layout=AV_CH_LAYOUT_STEREO;
@@ -1061,7 +1061,7 @@ AVStream* libav::exporter::add_stream(AVFormatContext *oc, AVCodec **codec,enum
case AVMEDIA_TYPE_VIDEO:
c->codec_id = codec_id;
- c->bit_rate = 400000;
+ c->bit_rate = 400000; //need to deal with resolution etc
// Resolution must be a multiple of two. //
c->width = 352;
c->height = 288;