summaryrefslogtreecommitdiffstats
path: root/remoting/codec/audio_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/codec/audio_decoder.h')
-rw-r--r--remoting/codec/audio_decoder.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/remoting/codec/audio_decoder.h b/remoting/codec/audio_decoder.h
index 72eedf2..f5088bc 100644
--- a/remoting/codec/audio_decoder.h
+++ b/remoting/codec/audio_decoder.h
@@ -22,6 +22,8 @@ class AudioDecoder {
virtual ~AudioDecoder() {}
+ // Returns the decoded packet. If the packet is invalid, then a NULL
+ // scoped_ptr is returned.
virtual scoped_ptr<AudioPacket> Decode(scoped_ptr<AudioPacket> packet) = 0;
};