You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
This is an API breaking change. IMediaTrack has been renamed to IMediaStream. There are three new interfaces for tracks: IMediaAudioTrack, IMediaCaptionTrack and IMediaVideoTrack. #CodeReview: chris.babcock, marcus.wassmer [CL 2622306 by Max Preussner in Main branch]
17 lines
437 B
C++
17 lines
437 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "DetailCustomizationsPrivatePCH.h"
|
|
#include "IMediaPlayer.h"
|
|
#include "IMediaStream.h"
|
|
#include "MediaPlayer.h"
|
|
#include "MediaSoundWaveCustomization.h"
|
|
|
|
|
|
/* IDetailCustomization interface
|
|
*****************************************************************************/
|
|
|
|
void FMediaSoundWaveCustomization::CustomizeDetails( IDetailLayoutBuilder& DetailBuilder )
|
|
{
|
|
|
|
}
|