Coding style fixes.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38502 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2010-09-01 17:57:18 +00:00
parent b6aa6d0da3
commit 65e71a6e02
@@ -25,14 +25,15 @@ using std::nothrow;
// constructor // constructor
MediaTrackVideoSupplier::MediaTrackVideoSupplier(BMediaTrack* track, MediaTrackVideoSupplier::MediaTrackVideoSupplier(BMediaTrack* track,
int32 trackIndex, status_t& initStatus) int32 trackIndex, status_t& initStatus)
: VideoTrackSupplier() :
, fVideoTrack(track) VideoTrackSupplier(),
fVideoTrack(track),
, fPerformanceTime(0) fPerformanceTime(0),
, fDuration(0) fDuration(0),
, fCurrentFrame(0) fCurrentFrame(0),
, fTrackIndex(trackIndex) fTrackIndex(trackIndex)
{ {
if (!fVideoTrack) { if (!fVideoTrack) {
printf("MediaTrackVideoSupplier() - no video track\n"); printf("MediaTrackVideoSupplier() - no video track\n");