commit | c936cb6a86999aa833d350f0c2729579733557d0 | [log] [tgz] |
---|---|---|
author | Niels Möller <nisse@webrtc.org> | Tue Mar 19 14:10:16 2019 +0100 |
committer | Commit Bot <commit-bot@chromium.org> | Tue Mar 19 16:59:27 2019 +0000 |
tree | b1bdb34ab4374fae257868126bf23e82983e899a | |
parent | 1d14af908e454efeb77b32eb5c10df5fef60aa36 [diff] [blame] |
Make AudioFrameType an enum class, and move to audio_coding_module_typedefs.h Bug: webrtc:5876 Change-Id: I0c92f9410fcf0832bfa321229b3437134255dba6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/128085 Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#27190}
diff --git a/modules/audio_coding/test/TestAllCodecs.cc b/modules/audio_coding/test/TestAllCodecs.cc index 52518ac..ad742ce 100644 --- a/modules/audio_coding/test/TestAllCodecs.cc +++ b/modules/audio_coding/test/TestAllCodecs.cc
@@ -75,7 +75,7 @@ rtp_header.payloadType = payload_type; rtp_header.timestamp = timestamp; - if (frame_type == kEmptyFrame) { + if (frame_type == AudioFrameType::kEmptyFrame) { // Skip this frame. return 0; }