123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- /****************************************************************************
- * Copyright 2019 Nreal Techonology Limited. All rights reserved.
- *
- * This file is part of NRSDK.
- *
- * https://www.nreal.ai/
- *
- *****************************************************************************/
- namespace NRKernal.Record
- {
- using AOT;
- using NRKernal;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- /// <summary> Callback, called when audio data is sampled. </summary>
- /// <param name="data"> The sampled audio data.</param>
- /// <param name="size"> The size of the audio data.</param>
- [UnmanagedFunctionPointer(CallingConvention.Cdecl)]
- public delegate void AudioDataCallBack(IntPtr data, UInt32 size);
- /// <summary> A native encoder. </summary>
- public class NativeEncoder
- {
- public const string NRNativeEncodeLibrary = "libmedia_codec";
- public UInt64 EncodeHandle;
- private event AudioDataCallBack m_OnAudioDataCallback;
- private bool mVideoEncoderWorking = false;
- private bool mAudioEncoderWorking = false;
- private List<IEncoderBase> mActiveEncoders = new List<IEncoderBase>();
- //NativeEncoder can only exist one instance
- private static NativeEncoder gInstance = null;
- public static NativeEncoder GetInstance()
- {
- if(gInstance == null)
- {
- gInstance = new NativeEncoder();
- }
- return gInstance;
- }
- private NativeEncoder()
- {
- var result = NativeApi.HWEncoderCreate(ref EncodeHandle);
- NativeErrorListener.Check(result, this, "HWEncoderCreate");
- }
- public bool Start()
- {
- if (mVideoEncoderWorking)
- {
- NRDebugger.Warning("[NativeEncoder] video encoder is already working");
- return false;
- }
- var result = NativeApi.HWEncoderStart(EncodeHandle);
- NativeErrorListener.Check(result, this, "Start");
- bool success = (result == NativeResult.Success);
- if (success)
- {
- mVideoEncoderWorking = true;
- }
- return success;
- }
- public bool StartAudioRecorder(AudioDataCallBack onAudioDataCallback)
- {
- if (onAudioDataCallback != null)
- m_OnAudioDataCallback += onAudioDataCallback;
- if (!mAudioEncoderWorking)
- {
- var result = NativeApi.HWEncoderStartOnlyAudioRecorder(EncodeHandle, OnAudioDataCallback);
- NativeErrorListener.Check(result, this, "StartAudioRecorder");
- bool success = (result == NativeResult.Success);
- if (success)
- {
- mAudioEncoderWorking = true;
- }
- return success;
- }
- return true;
- }
- public bool StopAudioRecorder(AudioDataCallBack onAudioDataCallback)
- {
- if (onAudioDataCallback != null)
- m_OnAudioDataCallback -= onAudioDataCallback;
- var delegateArray = m_OnAudioDataCallback?.GetInvocationList();
- if ((delegateArray == null || delegateArray.Length == 0) && mAudioEncoderWorking)
- {
- var result = NativeApi.HWEncoderStopOnlyAudioRecorder(EncodeHandle);
- NativeErrorListener.Check(result, this, "StopAudioRecorder");
- bool success = (result == NativeResult.Success);
- if (success)
- {
- mAudioEncoderWorking = false;
- }
- return success;
- }
- return true;
- }
- [MonoPInvokeCallback(typeof(AudioDataCallBack))]
- public static void OnAudioDataCallback(IntPtr data, UInt32 size)
- {
- if (gInstance != null)
- gInstance.m_OnAudioDataCallback?.Invoke(data, size);
- }
- public void SetConfigration(NativeEncodeConfig config, IntPtr androidMediaProjection)
- {
- var result = NativeApi.HWEncoderSetConfigration(EncodeHandle, config.ToString());
- NativeErrorListener.Check(result, this, "SetConfigration");
- NativeApi.HWEncoderSetMediaProjection(EncodeHandle, androidMediaProjection);
- // NativeErrorListener.Check(result, this, "SetConfigration-MediaProjection");
- }
- /// <summary> Adjust the volume of encoder.</summary>
- /// <param name="recordIdx"> Recorder index.</param>
- /// <param name="factor"> The factor of volume.</param>
- public void AdjustVolume(RecorderIndex recordIdx, float factor)
- {
- //NRDebugger.Info("[NativeEncoder] AdjustVolume: recordIdx={0}, factor={1}", (int)recordIdx, factor);
- var result = NativeApi.HWEncoderAdjustVolume(EncodeHandle, (int)recordIdx, factor);
- NativeErrorListener.Check(result, this, "AdjustVolume");
- }
- /// <summary> Updates the surface. </summary>
- /// <param name="texture_id"> Identifier for the texture.</param>
- /// <param name="time_stamp"> The time stamp.</param>
- public void UpdateSurface(IntPtr texture_id, UInt64 time_stamp)
- {
- NativeApi.HWEncoderUpdateSurface(EncodeHandle, texture_id, time_stamp);
- }
- public void UpdateAudioData(byte[] audioData, int samplerate, int bytePerSample, int channel)
- {
- //NRDebugger.Info("[NativeEncode] UpdateAudioData, audioData len:{0} samplerate:{1} bytePerSample:{2} channel:{3}", audioData.Length, samplerate, bytePerSample, channel);
- NativeApi.HWEncoderNotifyAudioData(EncodeHandle, audioData, audioData.Length / bytePerSample, bytePerSample, channel, samplerate, 1);
- }
- public void Register(IEncoderBase encoder)
- {
- if (!mActiveEncoders.Contains(encoder))
- {
- mActiveEncoders.Add(encoder);
- }
- }
- public void UnRegister(IEncoderBase encoder)
- {
- if (mActiveEncoders.Contains(encoder))
- {
- mActiveEncoders.Remove(encoder);
- }
- }
- public bool Stop()
- {
- if (mVideoEncoderWorking)
- {
- var result = NativeApi.HWEncoderStop(EncodeHandle);
- NativeErrorListener.Check(result, this, "Stop");
- bool success = (result == NativeResult.Success);
- if (success)
- {
- mVideoEncoderWorking = false;
- }
- return success;
- }
- return true;
- }
- public void Destroy()
- {
- if (mActiveEncoders.Count == 0)
- {
- var result = NativeApi.HWEncoderDestroy(EncodeHandle);
- NativeErrorListener.Check(result, this, "Destroy");
- gInstance = null;
- }
- }
- private struct NativeApi
- {
- /// <summary> Hardware encoder create. </summary>
- /// <param name="out_encoder_handle"> [in,out] Handle of the out encoder.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderCreate(ref UInt64 out_encoder_handle);
- /// <summary> Hardware encoder start. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderStart(UInt64 encoder_handle);
- /// <summary> Hardware encoder start, only for audio and no video.</summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="onAudioDataCallback"> Callback for sampled audio data.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderStartOnlyAudioRecorder(UInt64 encoder_handle, AudioDataCallBack onAudioDataCallback);
- /// <summary> Hardware encoder stop, only for audio and no video.</summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderStopOnlyAudioRecorder(UInt64 encoder_handle);
- /// <summary> Hardware encoder set configration. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="config"> The configuration.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderSetConfigration(UInt64 encoder_handle, string config);
- /// <summary> Hardware encoder set configration. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="which_recorder"> Recorder index.</param>
- /// <param name="scale_factor"> Scale factor.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderAdjustVolume(UInt64 encoder_handle, int which_recorder, float scale_factor);
- /// <summary> Hardware encoder set android MediaProjection object. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="mediaProjection"> The android MediaProjection object.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderSetMediaProjection(UInt64 encoder_handle, IntPtr mediaProjection);
- /// <summary> Hardware encoder update surface. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="texture_id"> Identifier for the texture.</param>
- /// <param name="time_stamp"> The time stamp.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderUpdateSurface(UInt64 encoder_handle, IntPtr texture_id, UInt64 time_stamp);
- /// <summary> Push sampled audio data. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <param name="audioSamples"> Sampled audio data.</param>
- /// <param name="nSamples"> Count of samples.</param>
- /// <param name="nBytesPerSample"> Bytes per sample.</param>
- /// <param name="nChannels"> Count of channels.</param>
- /// <param name="samples_per_sec"> Count of samples per second.</param>
- /// <param name="sample_fmt"> Sample format.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderNotifyAudioData(UInt64 encoder_handle, byte[] audioSamples, int nSamples,
- int nBytesPerSample, int nChannels, int samples_per_sec, int sample_fmt); //sample_fmt :0:s16, 8 float
- /// <summary> Hardware encoder stop. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderStop(UInt64 encoder_handle);
- /// <summary> Hardware encoder destroy. </summary>
- /// <param name="encoder_handle"> Handle of the encoder.</param>
- /// <returns> A NativeResult. </returns>
- [DllImport(NRNativeEncodeLibrary)]
- public static extern NativeResult HWEncoderDestroy(UInt64 encoder_handle);
- }
- }
- }
|