OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 30 matching lines...) Expand all Loading... |
41 public: | 41 public: |
42 enum AppendMode { | 42 enum AppendMode { |
43 AppendModeSegments, | 43 AppendModeSegments, |
44 AppendModeSequence | 44 AppendModeSequence |
45 }; | 45 }; |
46 | 46 |
47 virtual ~WebSourceBuffer() { } | 47 virtual ~WebSourceBuffer() { } |
48 | 48 |
49 // This will only be called once and only with a non-null pointer to a | 49 // This will only be called once and only with a non-null pointer to a |
50 // client whose ownership is not transferred to this WebSourceBuffer. | 50 // client whose ownership is not transferred to this WebSourceBuffer. |
51 virtual void setClient(WebSourceBufferClient*) | 51 virtual void setClient(WebSourceBufferClient*) = 0; |
52 { | |
53 // FIXME: Remove default implementation once Chromium impl lands. | |
54 } | |
55 | 52 |
56 virtual bool setMode(AppendMode) = 0; | 53 virtual bool setMode(AppendMode) = 0; |
57 virtual WebTimeRanges buffered() = 0; | 54 virtual WebTimeRanges buffered() = 0; |
58 | 55 |
59 // Appends data and runs the segment parser loop algorithm. | 56 // Appends data and runs the segment parser loop algorithm. |
60 // The algorithm may update |*timestampOffset| if |timestampOffset| is not n
ull. | 57 // The algorithm may update |*timestampOffset| if |timestampOffset| is not n
ull. |
61 virtual void append(const unsigned char* data, unsigned length, double* time
stampOffset) = 0; | 58 virtual void append(const unsigned char* data, unsigned length, double* time
stampOffset) = 0; |
62 | 59 |
63 virtual void abort() = 0; | 60 virtual void abort() = 0; |
64 virtual void remove(double start, double end) = 0; | 61 virtual void remove(double start, double end) = 0; |
65 virtual bool setTimestampOffset(double) = 0; | 62 virtual bool setTimestampOffset(double) = 0; |
66 | 63 |
67 // Set presentation timestamp for the start of append window. | 64 // Set presentation timestamp for the start of append window. |
68 virtual void setAppendWindowStart(double) = 0; | 65 virtual void setAppendWindowStart(double) = 0; |
69 | 66 |
70 // Set presentation timestamp for the end of append window. | 67 // Set presentation timestamp for the end of append window. |
71 virtual void setAppendWindowEnd(double) = 0; | 68 virtual void setAppendWindowEnd(double) = 0; |
72 | 69 |
73 // After this method is called, this WebSourceBuffer should never use the | 70 // After this method is called, this WebSourceBuffer should never use the |
74 // client pointer passed to setClient(). | 71 // client pointer passed to setClient(). |
75 virtual void removedFromMediaSource() = 0; | 72 virtual void removedFromMediaSource() = 0; |
76 }; | 73 }; |
77 | 74 |
78 } // namespace blink | 75 } // namespace blink |
79 | 76 |
80 #endif | 77 #endif |
OLD | NEW |