Encoder: Make constructor private
This commit is contained in:
parent
c09a589891
commit
f40547016d
@ -28,9 +28,6 @@ public:
|
||||
|
||||
class Encoder {
|
||||
public:
|
||||
Encoder();
|
||||
virtual ~Encoder();
|
||||
|
||||
// Some codecs may only support certain input color spaces, or output
|
||||
// color spaces, or multiple of 16 width/height... This method is needed
|
||||
// for get_next_encoder() functionality. If _acceptedInputFormat is NULL,
|
||||
@ -82,6 +79,10 @@ public:
|
||||
|
||||
virtual status_t Perform(perform_code code, void* data);
|
||||
|
||||
protected:
|
||||
Encoder();
|
||||
virtual ~Encoder();
|
||||
|
||||
private:
|
||||
ChunkWriter* fChunkWriter;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user