Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1193)

Unified Diff: webrtc/modules/audio_coding/codecs/isac/main/test/debugUtility.h

Issue 2065353002: Delete unused code. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Trivial rebase. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/api/remoteaudiotrack.cc ('k') | webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/codecs/isac/main/test/debugUtility.h
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/test/debugUtility.h b/webrtc/modules/audio_coding/codecs/isac/main/test/debugUtility.h
deleted file mode 100644
index d708ad1fea75958fb3cb8dff616ce6e1d9a77e62..0000000000000000000000000000000000000000
--- a/webrtc/modules/audio_coding/codecs/isac/main/test/debugUtility.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_TEST_DEBUGUTILITY_H_
-#define WEBRTC_MODULES_AUDIO_CODING_CODECS_ISAC_MAIN_TEST_DEBUGUTILITY_H_
-
-#include <stdio.h>
-#include <string.h>
-#include "utility.h"
-
-typedef struct
-{
- FILE* res0to4FilePtr;
- FILE* res4to8FilePtr;
- FILE* res8to12FilePtr;
- FILE* res8to16FilePtr;
-
- FILE* res0to4DecFilePtr;
- FILE* res4to8DecFilePtr;
- FILE* res8to12DecFilePtr;
- FILE* res8to16DecFilePtr;
-
- FILE* in0to4FilePtr;
- FILE* in4to8FilePtr;
- FILE* in8to12FilePtr;
- FILE* in8to16FilePtr;
-
- FILE* out0to4FilePtr;
- FILE* out4to8FilePtr;
- FILE* out8to12FilePtr;
- FILE* out8to16FilePtr;
-
- FILE* fftFilePtr;
- FILE* fftDecFilePtr;
-
- FILE* arrivalTime;
-
- float lastArrivalTime;
-
- int prevPacketLost;
- int currPacketLost;
- int nextPacketLost;
-
- //double residualSignal4kHZ[240];
- int packetLossPercent;
-
- int maxPayloadLB;
- int maxPayloadUB;
- int lbBytes;
- int ubBytes;
-
-
-}debugStruct;
-
-
-#define PRINT_ENTROPY_INFO(obj) \
- do \
- { \
- printf("%10u, %u; ", \
- obj->bitstr_obj.streamval, obj->bitstr_obj.stream_index); \
- } while(0)
-
-int setupDebugStruct(debugStruct* str);
-
-#endif
« no previous file with comments | « webrtc/api/remoteaudiotrack.cc ('k') | webrtc/modules/audio_coding/codecs/isac/main/test/simpleKenny.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698