OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2013 Google Inc. | 3 * Copyright 2013 Google Inc. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 virtual void OnClose() = 0; | 48 virtual void OnClose() = 0; |
49 | 49 |
50 protected: | 50 protected: |
51 virtual ~Sink() {} | 51 virtual ~Sink() {} |
52 }; | 52 }; |
53 | 53 |
54 // Sets a sink to the AudioRenderer. There can be only one sink connected | 54 // Sets a sink to the AudioRenderer. There can be only one sink connected |
55 // to the renderer at a time. | 55 // to the renderer at a time. |
56 virtual void SetSink(Sink* sink) {} | 56 virtual void SetSink(Sink* sink) {} |
57 | 57 |
| 58 // Add the WebRtc VoE channel to the renderer. |
| 59 // For local stream, multiple WebRtc VoE channels can be connected to the |
| 60 // renderer. While for remote stream, only one WebRtc VoE channel can be |
| 61 // connected to the renderer. |
| 62 // TODO(xians): Remove this interface after Chrome switches to the |
| 63 // AudioRenderer::Sink interface. |
| 64 virtual void AddChannel(int channel_id) {} |
| 65 |
| 66 // Remove the WebRtc VoE channel from the renderer. |
| 67 // This method is called when the VoE channel is going away. |
| 68 // TODO(xians): Remove this interface after Chrome switches to the |
| 69 // AudioRenderer::Sink interface. |
| 70 virtual void RemoveChannel(int channel_id) {} |
| 71 |
58 protected: | 72 protected: |
59 virtual ~AudioRenderer() {} | 73 virtual ~AudioRenderer() {} |
60 }; | 74 }; |
61 | 75 |
62 } // namespace cricket | 76 } // namespace cricket |
63 | 77 |
64 #endif // TALK_MEDIA_BASE_AUDIORENDERER_H_ | 78 #endif // TALK_MEDIA_BASE_AUDIORENDERER_H_ |
OLD | NEW |