mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
sbc: enc: sbc_get_frame_duration is in milliseconds
This commit is contained in:
parent
9581e704b6
commit
7e65f96acb
1 changed files with 1 additions and 1 deletions
|
@ -354,7 +354,7 @@ gst_sbc_enc_fill_sbc_params (GstSbcEnc * enc, GstCaps * caps)
|
|||
|
||||
enc->codesize = sbc_get_codesize (&enc->sbc);
|
||||
enc->frame_length = sbc_get_frame_length (&enc->sbc);
|
||||
enc->frame_duration = sbc_get_frame_duration (&enc->sbc);
|
||||
enc->frame_duration = sbc_get_frame_duration (&enc->sbc) * 1000;
|
||||
|
||||
GST_DEBUG_OBJECT (enc, "codesize: %d, frame_length: %d, frame_duration:"
|
||||
" %d", enc->codesize, enc->frame_length, enc->frame_duration);
|
||||
|
|
Loading…
Reference in a new issue