Coding style fixes.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38502 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -25,14 +25,15 @@ using std::nothrow;
|
||||
// constructor
|
||||
MediaTrackVideoSupplier::MediaTrackVideoSupplier(BMediaTrack* track,
|
||||
int32 trackIndex, status_t& initStatus)
|
||||
: VideoTrackSupplier()
|
||||
, fVideoTrack(track)
|
||||
:
|
||||
VideoTrackSupplier(),
|
||||
fVideoTrack(track),
|
||||
|
||||
, fPerformanceTime(0)
|
||||
, fDuration(0)
|
||||
, fCurrentFrame(0)
|
||||
fPerformanceTime(0),
|
||||
fDuration(0),
|
||||
fCurrentFrame(0),
|
||||
|
||||
, fTrackIndex(trackIndex)
|
||||
fTrackIndex(trackIndex)
|
||||
{
|
||||
if (!fVideoTrack) {
|
||||
printf("MediaTrackVideoSupplier() - no video track\n");
|
||||
|
||||
Reference in New Issue
Block a user