Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
34da181e
Commit
34da181e
authored
5 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Smol cleanup
parent
c4eceaeb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llviewermedia_streamingaudio.h
+16
-16
16 additions, 16 deletions
indra/newview/llviewermedia_streamingaudio.h
with
16 additions
and
16 deletions
indra/newview/llviewermedia_streamingaudio.h
+
16
−
16
View file @
34da181e
...
@@ -35,29 +35,29 @@
...
@@ -35,29 +35,29 @@
class
LLPluginClassMedia
;
class
LLPluginClassMedia
;
class
LLStreamingAudio_MediaPlugins
:
public
LLStreamingAudioInterface
class
LLStreamingAudio_MediaPlugins
final
:
public
LLStreamingAudioInterface
{
{
public:
public:
LLStreamingAudio_MediaPlugins
();
LLStreamingAudio_MediaPlugins
();
/*virtual*/
~
LLStreamingAudio_MediaPlugins
();
/*virtual*/
~
LLStreamingAudio_MediaPlugins
();
/*virtual*/
void
start
(
const
std
::
string
&
url
);
/*virtual*/
void
start
(
const
std
::
string
&
url
)
override
;
/*virtual*/
void
stop
();
/*virtual*/
void
stop
()
override
;
/*virtual*/
void
pause
(
int
pause
);
/*virtual*/
void
pause
(
int
pause
)
override
;
/*virtual*/
void
update
();
/*virtual*/
void
update
()
override
;
/*virtual*/
int
isPlaying
();
/*virtual*/
int
isPlaying
()
override
;
/*virtual*/
void
setGain
(
F32
vol
);
/*virtual*/
void
setGain
(
F32
vol
)
override
;
/*virtual*/
F32
getGain
();
/*virtual*/
F32
getGain
()
override
;
/*virtual*/
std
::
string
getURL
();
/*virtual*/
std
::
string
getURL
()
override
;
virtual
bool
supportsAdjustableBufferSizes
(){
return
false
;}
bool
supportsAdjustableBufferSizes
()
override
{
return
false
;}
virtual
void
setBufferSizes
(
U32
streambuffertime
,
U32
decodebuffertime
){};
void
setBufferSizes
(
U32
streambuffertime
,
U32
decodebuffertime
)
override
{};
virtual
bool
supportsMetaData
()
{
return
false
;
}
virtual
bool
supportsMetaData
()
override
{
return
false
;
}
virtual
const
LLSD
*
getMetaData
()
{
return
nullptr
;
}
virtual
const
LLSD
*
getMetaData
()
override
{
return
nullptr
;
}
virtual
bool
hasNewMetaData
()
{
return
false
;
}
virtual
bool
hasNewMetaData
()
override
{
return
false
;
}
virtual
bool
supportsWaveData
()
{
return
false
;
}
virtual
bool
supportsWaveData
()
override
{
return
false
;
}
virtual
bool
getWaveData
(
float
*
arr
,
S32
count
,
S32
stride
=
1
){
return
false
;
}
virtual
bool
getWaveData
(
float
*
arr
,
S32
count
,
S32
stride
=
1
)
override
{
return
false
;
}
private
:
private
:
LLPluginClassMedia
*
initializeMedia
(
const
std
::
string
&
media_type
);
LLPluginClassMedia
*
initializeMedia
(
const
std
::
string
&
media_type
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment