| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 // Abstract interface for rendering the audio data. | 35 // Abstract interface for rendering the audio data. |
| 36 class AudioRenderer { | 36 class AudioRenderer { |
| 37 public: | 37 public: |
| 38 class Sink { | 38 class Sink { |
| 39 public: | 39 public: |
| 40 // Callback to receive data from the AudioRenderer. | 40 // Callback to receive data from the AudioRenderer. |
| 41 virtual void OnData(const void* audio_data, | 41 virtual void OnData(const void* audio_data, |
| 42 int bits_per_sample, | 42 int bits_per_sample, |
| 43 int sample_rate, | 43 int sample_rate, |
| 44 int number_of_channels, | 44 size_t number_of_channels, |
| 45 size_t number_of_frames) = 0; | 45 size_t number_of_frames) = 0; |
| 46 | 46 |
| 47 // Called when the AudioRenderer is going away. | 47 // Called when the AudioRenderer is going away. |
| 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 protected: | 58 protected: |
| 59 virtual ~AudioRenderer() {} | 59 virtual ~AudioRenderer() {} |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace cricket | 62 } // namespace cricket |
| 63 | 63 |
| 64 #endif // TALK_MEDIA_BASE_AUDIORENDERER_H_ | 64 #endif // TALK_MEDIA_BASE_AUDIORENDERER_H_ |
| OLD | NEW |