本文整理汇总了Java中android.media.MediaFormat.getByteBuffer方法的典型用法代码示例。如果您正苦于以下问题:Java MediaFormat.getByteBuffer方法的具体用法?Java MediaFormat.getByteBuffer怎么用?Java MediaFormat.getByteBuffer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.media.MediaFormat
的用法示例。
在下文中一共展示了MediaFormat.getByteBuffer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addTrackAndReadyToStart
import android.media.MediaFormat; //导入方法依赖的package包/类
private void addTrackAndReadyToStart(int type) {
if (trackCnt == 2) {
return;
}
if (videoTrackIndex == null && type == FramePool.Frame.TYPE_VIDEO) {
MediaFormat videoOutputMediaFormat = params.getVideoOutputMediaFormat();
videoOutputMediaFormat.getByteBuffer("csd-0"); // SPS
videoOutputMediaFormat.getByteBuffer("csd-1"); // PPS
videoTrackIndex = mMuxer.addTrack(videoOutputMediaFormat);
trackCnt++;
} else if (audioTrackIndex == null && type == FramePool.Frame.TYPE_AUDIO) {
MediaFormat audioOutputMediaFormat = params.getAudioOutputMediaFormat();
audioTrackIndex = mMuxer.addTrack(audioOutputMediaFormat);
trackCnt++;
}
if (trackCnt == 2) {
frameSender.sendStartMessage();
}
}
示例2: resetOutputFormat
import android.media.MediaFormat; //导入方法依赖的package包/类
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR2)
private void resetOutputFormat() {
// should happen before receiving buffers, and should only happen once
if (mMuxerStarted) {
throw new IllegalStateException("output format already changed!");
}
MediaFormat newFormat = mEncoder.getOutputFormat();
newFormat.getByteBuffer("csd-0"); // SPS
newFormat.getByteBuffer("csd-1"); // PPS
Log.i(TAG, "output format changed.\n new format: " + newFormat.toString());
mVideoTrackIndex = mMuxer.addTrack(newFormat);
mMuxer.start();
mMuxerStarted = true;
Log.i(TAG, "started media muxer, videoIndex=" + mVideoTrackIndex);
}