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

Unified Diff: webrtc/api/audio_codecs/audio_format.cc

Issue 2668523004: Move AudioDecoder and related stuff to the api/ directory (Closed)
Patch Set: more review fixes Created 3 years, 10 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/audio_codecs/audio_format.h ('k') | webrtc/api/audio_codecs/builtin_audio_decoder_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/audio_codecs/audio_format.cc
diff --git a/webrtc/modules/audio_coding/codecs/audio_format.cc b/webrtc/api/audio_codecs/audio_format.cc
similarity index 95%
rename from webrtc/modules/audio_coding/codecs/audio_format.cc
rename to webrtc/api/audio_codecs/audio_format.cc
index f2a87d3d86afb4edd1d60b8f85e54981dec82a58..b0a86e25bd8a7c2ae225ed539666cbf879cf03a5 100644
--- a/webrtc/modules/audio_coding/codecs/audio_format.cc
+++ b/webrtc/api/audio_codecs/audio_format.cc
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "webrtc/modules/audio_coding/codecs/audio_format.h"
+#include "webrtc/api/audio_codecs/audio_format.h"
#include "webrtc/common_types.h"
@@ -77,8 +77,7 @@ std::ostream& operator<<(std::ostream& os, const SdpAudioFormat& saf) {
return os;
}
-AudioCodecSpec::AudioCodecSpec(const SdpAudioFormat& format)
- : format(format) {}
+AudioCodecSpec::AudioCodecSpec(const SdpAudioFormat& format) : format(format) {}
AudioCodecSpec::AudioCodecSpec(SdpAudioFormat&& format)
: format(std::move(format)) {}
« no previous file with comments | « webrtc/api/audio_codecs/audio_format.h ('k') | webrtc/api/audio_codecs/builtin_audio_decoder_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698