1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
public class AacPcmCoder { private static final String TAG = "AacPcmCoder"; private final static String AUDIO_MIME = "audio/mp4a-latm"; private final static long AUDIO_BYTES_PER_SAMPLE = 44100 * 1 * 16 / 8;
public static void encodePcmToAac(File inPcmFile, File outAacFile) throws IOException { FileInputStream fisRawAudio = null; FileOutputStream fosAccAudio = null; MediaCodec audioEncoder = createAudioEncoder();
try { fisRawAudio = new FileInputStream(inPcmFile); fosAccAudio = new FileOutputStream(outAacFile); audioEncoder.start(); ByteBuffer[] audioInputBuffers = audioEncoder.getInputBuffers(); ByteBuffer[] audioOutputBuffers = audioEncoder.getOutputBuffers(); boolean sawInputEOS = false; boolean sawOutputEOS = false; long audioTimeUs = 0; MediaCodec.BufferInfo outBufferInfo = new MediaCodec.BufferInfo(); boolean readRawAudioEOS = false; byte[] rawInputBytes = new byte[8192]; int readRawAudioCount; int rawAudioSize = 0; long lastAudioPresentationTimeUs = 0; int inputBufIndex, outputBufIndex; while (!sawOutputEOS) { if (!sawInputEOS) { inputBufIndex = audioEncoder.dequeueInputBuffer(10_000); if (inputBufIndex >= 0) { ByteBuffer inputBuffer = audioInputBuffers[inputBufIndex]; inputBuffer.clear(); int bufferSize = inputBuffer.remaining(); if (bufferSize != rawInputBytes.length) { rawInputBytes = new byte[bufferSize]; }
readRawAudioCount = fisRawAudio.read(rawInputBytes); if (readRawAudioCount == -1) { readRawAudioEOS = true; }
if (readRawAudioEOS) { audioEncoder.queueInputBuffer(inputBufIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM); sawInputEOS = true; } else { inputBuffer.put(rawInputBytes, 0, readRawAudioCount); rawAudioSize += readRawAudioCount; audioEncoder.queueInputBuffer(inputBufIndex, 0, readRawAudioCount, audioTimeUs, 0); audioTimeUs = (long) (1_000_000 * ((float) rawAudioSize / AUDIO_BYTES_PER_SAMPLE)); } } }
outputBufIndex = audioEncoder.dequeueOutputBuffer(outBufferInfo, 10_000); if (outputBufIndex >= 0) { if ((outBufferInfo.flags & MediaCodec.BUFFER_FLAG_CODEC_CONFIG) != 0) { Log.i(TAG, "audio encoder: codec config buffer"); audioEncoder.releaseOutputBuffer(outputBufIndex, false); continue; } if (outBufferInfo.size != 0) { ByteBuffer outBuffer = audioOutputBuffers[outputBufIndex]; outBuffer.position(outBufferInfo.offset); outBuffer.limit(outBufferInfo.offset + outBufferInfo.size); if (lastAudioPresentationTimeUs <= outBufferInfo.presentationTimeUs) { lastAudioPresentationTimeUs = outBufferInfo.presentationTimeUs; int outBufSize = outBufferInfo.size; int outPacketSize = outBufSize + 7; outBuffer.position(outBufferInfo.offset); outBuffer.limit(outBufferInfo.offset + outBufSize); byte[] outData = new byte[outPacketSize]; addADTStoPacket(outData, outPacketSize); outBuffer.get(outData, 7, outBufSize); fosAccAudio.write(outData, 0, outData.length); } else { Log.e(TAG, "error sample! its presentationTimeUs should not lower than before."); } } audioEncoder.releaseOutputBuffer(outputBufIndex, false); if ((outBufferInfo.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) { sawOutputEOS = true; } } else if (outputBufIndex == MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED) { audioOutputBuffers = audioEncoder.getOutputBuffers(); } else if (outputBufIndex == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED) { MediaFormat audioFormat = audioEncoder.getOutputFormat(); Log.i(TAG, "format change : " + audioFormat); } } } finally { Log.i(TAG, "encodePcmToAac: finish"); if (fisRawAudio != null) { fisRawAudio.close(); } if (fosAccAudio != null) { fosAccAudio.close(); } audioEncoder.release(); } }
public static void decodeAacTomPcm(File aacFile, File pcmFile) throws IOException{ MediaExtractor extractor = new MediaExtractor(); extractor.setDataSource(aacFile.getAbsolutePath()); MediaFormat mediaFormat = null; for (int i = 0; i < extractor.getTrackCount(); i++) { MediaFormat format = extractor.getTrackFormat(i); String mime = format.getString(MediaFormat.KEY_MIME); if (mime.startsWith("audio/")) { extractor.selectTrack(i); mediaFormat = format; break; } } if (mediaFormat == null) { Log.e(TAG, "Invalid file with audio track."); extractor.release(); return; }
FileOutputStream fosDecoder = new FileOutputStream(pcmFile); String mediaMime = mediaFormat.getString(MediaFormat.KEY_MIME); Log.i(TAG, "decodeAacToPcm: mimeType: " + mediaMime); MediaCodec codec = MediaCodec.createDecoderByType(mediaMime); codec.configure(mediaFormat, null, null, 0); codec.start(); ByteBuffer[] codecInputBuffers = codec.getInputBuffers(); ByteBuffer[] codecOutputBuffers = codec.getOutputBuffers(); final long kTimeOutUs = 10_000; MediaCodec.BufferInfo info = new MediaCodec.BufferInfo(); boolean sawInputEOS = false; boolean sawOutputEOS = false;
try { while (!sawOutputEOS) { if (!sawInputEOS) { int inputBufIndex = codec.dequeueInputBuffer(kTimeOutUs); if (inputBufIndex >= 0) { ByteBuffer dstBuf = codecInputBuffers[inputBufIndex]; int sampleSize = extractor.readSampleData(dstBuf, 0); if (sampleSize < 0) { Log.i(TAG, "saw input EOS."); sawInputEOS = true; codec.queueInputBuffer(inputBufIndex, 0, 0, 0, MediaCodec.BUFFER_FLAG_END_OF_STREAM); } else { codec.queueInputBuffer(inputBufIndex, 0, sampleSize, extractor.getSampleTime(), 0); extractor.advance(); } } }
int outputBufferIndex = codec.dequeueOutputBuffer(info, kTimeOutUs); if (outputBufferIndex >= 0) { if ((info.flags & MediaCodec.BUFFER_FLAG_CODEC_CONFIG) != 0) { Log.i(TAG, "audio encoder: codec config buffer"); codec.releaseOutputBuffer(outputBufferIndex, false); continue; }
if (info.size != 0) { ByteBuffer outBuf = codecOutputBuffers[outputBufferIndex]; outBuf.position(info.offset); outBuf.limit(info.offset + info.size); byte[] data = new byte[info.size]; outBuf.get(data); fosDecoder.write(data); }
codec.releaseOutputBuffer(outputBufferIndex, false); if ((info.flags & MediaCodec.BUFFER_FLAG_END_OF_STREAM) != 0) { Log.i(TAG, "saw output EOS."); sawOutputEOS = true; } } else if (outputBufferIndex == MediaCodec.INFO_OUTPUT_BUFFERS_CHANGED) { codecOutputBuffers = codec.getOutputBuffers(); Log.i(TAG, "output buffers have changed."); } else if (outputBufferIndex == MediaCodec.INFO_OUTPUT_FORMAT_CHANGED) { MediaFormat oformat = codec.getOutputFormat(); Log.i(TAG, "output format has changed to " + oformat); } } } finally { Log.i(TAG, "decodeAacToPcm finish"); codec.stop(); codec.release(); extractor.release(); fosDecoder.close(); } }
private static MediaCodec createAudioEncoder() throws IOException { MediaCodec codec = MediaCodec.createEncoderByType(AUDIO_MIME); MediaFormat format = new MediaFormat(); format.setString(MediaFormat.KEY_MIME, AUDIO_MIME); format.setInteger(MediaFormat.KEY_BIT_RATE, 64000); format.setInteger(MediaFormat.KEY_CHANNEL_COUNT, 1); format.setInteger(MediaFormat.KEY_SAMPLE_RATE, 44100); format.setInteger(MediaFormat.KEY_AAC_PROFILE, MediaCodecInfo.CodecProfileLevel.AACObjectLC); codec.configure(format, null, null, MediaCodec.CONFIGURE_FLAG_ENCODE); return codec; }
private static void addADTStoPacket(byte[] packet, int packetLen) { int profile = 2; int freqIdx = 4; int chanCfg = 1; packet[0] = (byte) 0xFF; packet[1] = (byte) 0xF9; packet[2] = (byte) (((profile - 1) << 6) + (freqIdx << 2) + (chanCfg >> 2)); packet[3] = (byte) (((chanCfg & 3) << 6) + (packetLen >> 11)); packet[4] = (byte) ((packetLen & 0x7FF) >> 3); packet[5] = (byte) (((packetLen & 7) << 5) + 0x1F); packet[6] = (byte) 0xFC; } }
|