Home | History | Annotate | Download | only in media

Lines Matching refs:bitRate

535      * specified bit rate is applicable, and sometimes the passed bitRate will be clipped
539 * @param bitRate the audio encoding bit rate in bits per second.
541 public void setAudioEncodingBitRate(int bitRate) {
542 if (bitRate <= 0) {
545 setParameter("audio-param-encoding-bitrate=" + bitRate);
551 * specified bit rate is applicable, and sometimes the passed bitRate will be
555 * @param bitRate the video encoding bit rate in bits per second.
557 public void setVideoEncodingBitRate(int bitRate) {
558 if (bitRate <= 0) {
561 setParameter("video-param-encoding-bitrate=" + bitRate);