OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ |
6 #define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ | 6 #define CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 class DecryptConfig; | 14 class DecryptConfig; |
15 } | 15 } |
16 | 16 |
17 namespace chromecast { | 17 namespace chromecast { |
18 namespace media { | 18 namespace media { |
19 | 19 |
| 20 enum StreamId { |
| 21 kPrimary = 0, |
| 22 kSecondary |
| 23 }; |
| 24 |
20 // DecoderBufferBase exposes only the properties of an audio/video buffer. | 25 // DecoderBufferBase exposes only the properties of an audio/video buffer. |
21 // The way a DecoderBufferBase is created and organized in memory | 26 // The way a DecoderBufferBase is created and organized in memory |
22 // is left as a detail of the implementation of derived classes. | 27 // is left as a detail of the implementation of derived classes. |
23 class DecoderBufferBase | 28 class DecoderBufferBase |
24 : public base::RefCountedThreadSafe<DecoderBufferBase> { | 29 : public base::RefCountedThreadSafe<DecoderBufferBase> { |
25 public: | 30 public: |
26 DecoderBufferBase(); | 31 DecoderBufferBase(); |
27 | 32 |
| 33 // Returns the stream id of this decoder buffer belonging to. it's optional |
| 34 // and default value is kPrimary. |
| 35 virtual StreamId stream_id() const = 0; |
| 36 |
28 // Returns the PTS of the frame. | 37 // Returns the PTS of the frame. |
29 virtual base::TimeDelta timestamp() const = 0; | 38 virtual base::TimeDelta timestamp() const = 0; |
30 | 39 |
31 // Gets the frame data. | 40 // Gets the frame data. |
32 virtual const uint8* data() const = 0; | 41 virtual const uint8* data() const = 0; |
33 virtual uint8* writable_data() const = 0; | 42 virtual uint8* writable_data() const = 0; |
34 | 43 |
35 // Returns the size of the frame in bytes. | 44 // Returns the size of the frame in bytes. |
36 virtual size_t data_size() const = 0; | 45 virtual size_t data_size() const = 0; |
37 | 46 |
(...skipping 10 matching lines...) Expand all Loading... |
48 virtual ~DecoderBufferBase(); | 57 virtual ~DecoderBufferBase(); |
49 | 58 |
50 private: | 59 private: |
51 DISALLOW_COPY_AND_ASSIGN(DecoderBufferBase); | 60 DISALLOW_COPY_AND_ASSIGN(DecoderBufferBase); |
52 }; | 61 }; |
53 | 62 |
54 } // namespace media | 63 } // namespace media |
55 } // namespace chromecast | 64 } // namespace chromecast |
56 | 65 |
57 #endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ | 66 #endif // CHROMECAST_MEDIA_CMA_BASE_DECODER_BUFFER_BASE_H_ |
OLD | NEW |