Pepper_56_C++_interfaces
Pepper_56_C++_interfaces
 All Classes Namespaces Files Functions Typedefs Enumerations Macros Groups
elementary_stream_listener_samsung.h
Go to the documentation of this file.
1 // Copyright (c) 2016 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef PPAPI_CPP_SAMSUNG_ELEMENTARY_STREAM_LISTENER_SAMSUNG_H_
6 #define PPAPI_CPP_SAMSUNG_ELEMENTARY_STREAM_LISTENER_SAMSUNG_H_
7 
8 #include "ppapi/c/samsung/ppp_media_data_source_samsung.h"
9 
13 namespace pp {
14 
17  public:
19 
24  virtual void OnNeedData(int32_t bytes_max) = 0;
25 
28  virtual void OnEnoughData() = 0;
29 
33  virtual void OnSeekData(PP_TimeTicks new_position) = 0;
34 
35  protected:
39 
40  private:
41  // Disallow copy and assign
45 };
46 
47 } // namespace pp
48 
49 #endif // PPAPI_CPP_SAMSUNG_ELEMENTARY_STREAM_LISTENER_SAMSUNG_H_
virtual void OnSeekData(PP_TimeTicks new_position)=0
Listener for receiving elementary stream related events.
Definition: elementary_stream_listener_samsung.h:16
virtual void OnNeedData(int32_t bytes_max)=0