mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
lamemp3enc: really report bitrate rather kbitrate
This commit is contained in:
parent
2bfec2cccc
commit
19c6d5e45b
1 changed files with 1 additions and 1 deletions
|
@ -678,7 +678,7 @@ gst_lamemp3enc_setup (GstLameMP3Enc * lame, GstTagList ** tags)
|
||||||
CHECK_ERROR (lame_set_VBR_mean_bitrate_kbps (lame->lgf, lame->bitrate));
|
CHECK_ERROR (lame_set_VBR_mean_bitrate_kbps (lame->lgf, lame->bitrate));
|
||||||
}
|
}
|
||||||
gst_tag_list_add (*tags, GST_TAG_MERGE_REPLACE, GST_TAG_BITRATE,
|
gst_tag_list_add (*tags, GST_TAG_MERGE_REPLACE, GST_TAG_BITRATE,
|
||||||
lame->bitrate, NULL);
|
lame->bitrate * 1000, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (lame->encoding_engine_quality == LAMEMP3ENC_ENCODING_ENGINE_QUALITY_FAST)
|
if (lame->encoding_engine_quality == LAMEMP3ENC_ENCODING_ENGINE_QUALITY_FAST)
|
||||||
|
|
Loading…
Reference in a new issue