summaryrefslogtreecommitdiff
path: root/rotord
diff options
context:
space:
mode:
authorTim Redfern <tim@herge.(none)>2013-08-01 15:53:19 +0100
committerTim Redfern <tim@herge.(none)>2013-08-01 15:53:19 +0100
commit9c40fdc08e64fde94b4f041565be916ac479e483 (patch)
tree8d56d9a11cd930787c1b4c105d715584d6fb2634 /rotord
parent163b7f165d40289c03cebb9d9d8c8618e01ef0db (diff)
raise audio bitrate
Diffstat (limited to 'rotord')
-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;