* White space cleanup
* Added myself to copyrights, since I added some stuff to MediaExtractor. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35031 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
/*
|
||||
* Copyright 2004-2007, Marcus Overhagen. All rights reserved.
|
||||
* Copyright 2008, Maurice Kalinowski. All rights reserved.
|
||||
* Copyright 2009-2010, Stephan Aßmus <[email protected]>. All rights reserved.
|
||||
* Copyright 2009, Axel Dörfler, [email protected].
|
||||
* Copyright 2008, Maurice Kalinowski. All rights reserved.
|
||||
* Copyright 2004-2007, Marcus Overhagen. All rights reserved.
|
||||
*
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
@@ -51,8 +52,8 @@ public:
|
||||
int64 CountFrames(int32 stream) const;
|
||||
bigtime_t Duration(int32 stream) const;
|
||||
|
||||
status_t Seek(int32 stream, uint32 seekTo, int64* _frame,
|
||||
bigtime_t* _time);
|
||||
status_t Seek(int32 stream, uint32 seekTo,
|
||||
int64* _frame, bigtime_t* _time);
|
||||
status_t FindKeyFrame(int32 stream, uint32 seekTo,
|
||||
int64* _frame, bigtime_t* _time) const;
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@ class Reader {
|
||||
public:
|
||||
Reader();
|
||||
virtual ~Reader();
|
||||
|
||||
|
||||
virtual const char* Copyright() = 0;
|
||||
|
||||
|
||||
virtual status_t Sniff(int32* streamCount) = 0;
|
||||
|
||||
virtual void GetFileFormatInfo(media_file_format* mff) = 0;
|
||||
@@ -27,7 +27,7 @@ public:
|
||||
virtual status_t AllocateCookie(int32 streamNumber,
|
||||
void** cookie) = 0;
|
||||
virtual status_t FreeCookie(void* cookie) = 0;
|
||||
|
||||
|
||||
virtual status_t GetStreamInfo(void* cookie, int64* frameCount,
|
||||
bigtime_t *duration, media_format* format,
|
||||
const void** infoBuffer,
|
||||
@@ -41,7 +41,7 @@ public:
|
||||
virtual status_t GetNextChunk(void* cookie,
|
||||
const void** chunkBuffer, size_t* chunkSize,
|
||||
media_header* mediaHeader) = 0;
|
||||
|
||||
|
||||
BDataIO* Source() const;
|
||||
|
||||
virtual status_t Perform(perform_code code, void* data);
|
||||
|
||||
Reference in New Issue
Block a user