 Chromium Code Reviews
 Chromium Code Reviews Issue 1175903002:
  audio_processing: Create now returns a pointer to the object  (Closed) 
  Base URL: https://chromium.googlesource.com/external/webrtc.git@master
    
  
    Issue 1175903002:
  audio_processing: Create now returns a pointer to the object  (Closed) 
  Base URL: https://chromium.googlesource.com/external/webrtc.git@master| Index: webrtc/modules/audio_processing/aec/aec_core.h | 
| diff --git a/webrtc/modules/audio_processing/aec/aec_core.h b/webrtc/modules/audio_processing/aec/aec_core.h | 
| index aa5687a4f495b821f8f49b41157d5acdc5e1edcd..5b4ee032b9e2bbbd13711f734e192e9b2f5bfd66 100644 | 
| --- a/webrtc/modules/audio_processing/aec/aec_core.h | 
| +++ b/webrtc/modules/audio_processing/aec/aec_core.h | 
| @@ -51,7 +51,7 @@ typedef struct Stats { | 
| typedef struct AecCore AecCore; | 
| -int WebRtcAec_CreateAec(AecCore** aec); | 
| +AecCore* WebRtcAec_CreateAec(); | 
| 
kwiberg-webrtc
2015/06/10 09:31:43
A comment that it returns NULL on error?
 
bjornv1
2015/06/10 19:03:04
Done
 | 
| void WebRtcAec_FreeAec(AecCore* aec); | 
| int WebRtcAec_InitAec(AecCore* aec, int sampFreq); | 
| void WebRtcAec_InitAec_SSE2(void); |