# Compressed format playback This sample app demonstrates how to use the audio APIs for compressed audio format playback. 1. Get the AudioFactory instance auto &audioFactory = AudioFactory::getInstance(); Copy to clipboard 2. Get the AudioManager instance and check for audio subsystem readiness std::promise prom{}; // Get AudioManager instance audioManager = audioFactory.getAudioManager([&prom](ServiceStatus serviceStatus) { prom.set_value(serviceStatus); }); if (!audioManager) { std::cout << "Failed to get AudioManager instance" << std::endl; return; } // Check if audio subsystem is ready // If audio subsystem is not ready, wait for it to be ready ServiceStatus managerStatus = audioManager->getServiceStatus(); if (managerStatus != ServiceStatus::SERVICE_AVAILABLE) { std::cout << "\nAudio subsystem is not ready, Please wait ..." << std::endl; managerStatus = prom.get_future().get(); } // Check the service status again if (managerStatus == ServiceStatus::SERVICE_AVAILABLE) { std::cout << "Audio Subsytem is Ready << std::endl; } else { std::cout << "ERROR - Unable to initialize audio subsystem" << std::endl; return; } Copy to clipboard 3. Create an audio playback session // Callback which provides response to createStream with pointer to base interface IAudioStream void createStreamCallback(std::shared_ptr &stream, ErrorCode error) { if (error != ErrorCode::SUCCESS) { std::cout << "createStream() returned with error " << static_cast(error) << std::endl; return; } std::cout << "createStream() succeeded." << std::endl; audioPlayStream = std::dynamic_pointer_cast(stream); } StreamConfig config; config.type = StreamType::PLAY; config.sampleRate = 48000; config.format = AudioFormat::AMRWB_PLUS; config.channelTypeMask = ChannelType::LEFT; config.deviceTypes.emplace_back(DeviceType::DEVICE_TYPE_SPEAKER); AmrwbpParams params; params.bitWidth = 16; params.frameFormat = AmrwbpFrameFormat::FILE_STORAGE_FORMAT; config.formatParams = ¶ms; status = audioManager->createStream(config, createStreamCallback); Copy to clipboard 4. Allocate stream buffers for playback operation // Get an audio buffer (we can get more than one) auto streamBuffer = audioPlayStream->getStreamBuffer(); if (streamBuffer != nullptr) { // Setting the size that is to be written to stream as the minimum size // required by stream. In any case if size returned is 0, using the Maximum // Buffer Size, any buffer size between min and max can be used size = streamBuffer->getMinSize(); if (size == 0) { size = streamBuffer->getMaxSize(); } streamBuffer->setDataSize(size); } else { std::cout << "Failed to get Stream Buffer " << std::endl; } Copy to clipboard 5. Start write operation for playback to start // Callback which provides response to write operation void writeCallback(std::shared_ptr buffer, uint32_t bytes, ErrorCode error) { if (error != ErrorCode::SUCCESS) { std::cout << "write() returned with error " << static_cast(error) << std::endl; // Application needs to resend the Bitstream buffer from leftover position if bytes // consumed are not equal to requested number of bytes to be written. pipeLineEmpty_ = false; } buffer->reset(); return; } // Indiction Received only when callback returns with error that // bytes written are not equal to bytes requested to write. It // notifies that pipeline is ready to accept new buffer to write. void onReadyForWrite() { pipeLineEmpty_ = true; } // Write desired data into the buffer, the bytes sent as 0x1 for example purpose only. // First write starts Playback Session. memset(streamBuffer->getRawBuffer(),0x1,size); auto status = audioPlayStream->write(streamBuffer, writeCallback); if (status != telux::common::Status::SUCCESS) { std::cout << "write() failed with error" << static_cast(status) << std::endl; } else { std::cout << "Request to write to stream sent" << std::endl; } Copy to clipboard 6.1 Stop playback operation(STOP\_AFTER\_PLAY : Stops after playing pending buffers in pipeline) std::promise p; auto status = audioPlayStream_->stopAudio(StopType::STOP_AFTER_PLAY, [&p](ErrorCode error) { if (error == ErrorCode::SUCCESS) { p.set_value(true); } else { p.set_value(false); std::cout << "Failed to stop after playing buffers" << std::endl; } }); if (status == Status::SUCCESS) { std::cout << "Request to stop playback after pending buffers Sent" << std::endl; } else { std::cout << "Request to stop playback after pending buffers failed" << std::endl; } if (p.get_future().get()) { std::cout << "Pending buffers played successful !!" << std::endl; } Copy to clipboard 6.2 Stop playback operation(FORCE\_STOP : Stops immediately, all buffers in pipeline are flushed) std::promise p; auto status = audioPlayStream_->stopAudio( StopType::FORCE_STOP, [&p](telux::common::ErrorCode error) { if (error == telux::common::ErrorCode::SUCCESS) { p.set_value(true); } else { p.set_value(false); std::cout << "Failed to force stop" << std::endl; } }); if(status == telux::common::Status::SUCCESS){ std::cout << "Request to force stop Sent" << std::endl; } else { std::cout << "Request to force stop failed" << std::endl; } if (p.get_future().get()) { std::cout << "Force Stop successful !!" << std::endl; } Copy to clipboard 7. Dispose the audio stream, once end of operation is reached // Callback which provides response to deleteStream void deleteStreamCallback(ErrorCode error) { if (error != ErrorCode::SUCCESS) { std::cout << "deleteStream() returned with error " << static_cast(error) << std::endl; return; } std::cout << "deleteStream() succeeded." << std::endl; audioPlayStream = nullptr; } Status status = audioManager->deleteStream(audioPlayStream, deleteStreamCallback); if (status != Status::SUCCESS) { std::cout << "deleteStream failed with error" << static_cast(status) << std::endl; } Copy to clipboard Last Published: Aug 05, 2026 [Previous Topic Transcoding samples](https://docs.qualcomm.com/bundle/publicresource/80-PF458-9/topics/audio_transcoding_operation.md) [Next Topic Playback on voice paths](https://docs.qualcomm.com/bundle/publicresource/80-PF458-9/topics/compressed_audio_format_playback_on_voice_paths.md)