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
|
// 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");
|
||||||
|
|||||||
Reference in New Issue
Block a user