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
158005d5
Commit
158005d5
authored
15 years ago
by
Rick Pasetto
Browse files
Options
Downloads
Plain Diff
Merge backout of b6030bb6ff40
parents
c0c1d91c
dd861135
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llviewermedia.h
+6
-0
6 additions, 0 deletions
indra/newview/llviewermedia.h
indra/newview/llviewerparcelmedia.cpp
+2
-38
2 additions, 38 deletions
indra/newview/llviewerparcelmedia.cpp
with
8 additions
and
38 deletions
indra/newview/llviewermedia.h
+
6
−
0
View file @
158005d5
...
@@ -115,6 +115,12 @@ class LLViewerMedia
...
@@ -115,6 +115,12 @@ class LLViewerMedia
// This is the comparitor used to sort the list.
// This is the comparitor used to sort the list.
static
bool
priorityComparitor
(
const
LLViewerMediaImpl
*
i1
,
const
LLViewerMediaImpl
*
i2
);
static
bool
priorityComparitor
(
const
LLViewerMediaImpl
*
i1
,
const
LLViewerMediaImpl
*
i2
);
// For displaying the media first-run dialog.
static
bool
needsMediaFirstRun
();
static
void
displayMediaFirstRun
();
static
bool
firstRunCallback
(
const
LLSD
&
notification
,
const
LLSD
&
response
);
};
};
// Implementation functions not exported into header file
// Implementation functions not exported into header file
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewerparcelmedia.cpp
+
2
−
38
View file @
158005d5
...
@@ -56,10 +56,6 @@ LLUUID LLViewerParcelMedia::sMediaRegionID;
...
@@ -56,10 +56,6 @@ LLUUID LLViewerParcelMedia::sMediaRegionID;
viewer_media_t
LLViewerParcelMedia
::
sMediaImpl
;
viewer_media_t
LLViewerParcelMedia
::
sMediaImpl
;
// Local functions
bool
callback_play_media
(
const
LLSD
&
notification
,
const
LLSD
&
response
,
LLParcel
*
parcel
);
// static
// static
void
LLViewerParcelMedia
::
initClass
()
void
LLViewerParcelMedia
::
initClass
()
{
{
...
@@ -112,12 +108,10 @@ void LLViewerParcelMedia::update(LLParcel* parcel)
...
@@ -112,12 +108,10 @@ void LLViewerParcelMedia::update(LLParcel* parcel)
// First use warning
// First use warning
if
(
(
!
mediaUrl
.
empty
()
||
if
(
(
!
mediaUrl
.
empty
()
||
!
parcel
->
getMusicURL
().
empty
())
!
parcel
->
getMusicURL
().
empty
())
&&
gWarningSettings
.
getBOOL
(
"FirstStreamingMedia"
)
)
&&
LLViewerMedia
::
needsMediaFirstRun
()
)
{
{
LLNotificationsUtil
::
add
(
"ParcelCanPlayMedia"
,
LLSD
(),
LLSD
(),
LLViewerMedia
::
displayMediaFirstRun
();
boost
::
bind
(
callback_play_media
,
_1
,
_2
,
parcel
));
return
;
return
;
}
}
// if we have a current (link sharing) url, use it instead
// if we have a current (link sharing) url, use it instead
...
@@ -591,36 +585,6 @@ void LLViewerParcelMedia::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
...
@@ -591,36 +585,6 @@ void LLViewerParcelMedia::handleMediaEvent(LLPluginClassMedia* self, EMediaEvent
};
};
}
}
bool
callback_play_media
(
const
LLSD
&
notification
,
const
LLSD
&
response
,
LLParcel
*
parcel
)
{
S32
option
=
LLNotificationsUtil
::
getSelectedOption
(
notification
,
response
);
if
(
option
==
0
)
{
// user has elected to automatically play media.
gSavedSettings
.
setBOOL
(
LLViewerMedia
::
AUTO_PLAY_MEDIA_SETTING
,
TRUE
);
gSavedSettings
.
setBOOL
(
"AudioStreamingVideo"
,
TRUE
);
gSavedSettings
.
setBOOL
(
"AudioStreamingMusic"
,
TRUE
);
if
(
!
gSavedSettings
.
getBOOL
(
"AudioStreamingMedia"
))
gSavedSettings
.
setBOOL
(
"AudioStreamingMedia"
,
TRUE
);
// play media right now, if available
LLViewerParcelMedia
::
play
(
parcel
);
// play music right now, if available
if
(
parcel
)
{
std
::
string
music_url
=
parcel
->
getMusicURL
();
if
(
gAudiop
&&
!
music_url
.
empty
())
gAudiop
->
startInternetStream
(
music_url
);
}
}
else
{
gSavedSettings
.
setBOOL
(
"AudioStreamingVideo"
,
FALSE
);
gSavedSettings
.
setBOOL
(
"AudioStreamingMusic"
,
FALSE
);
}
gWarningSettings
.
setBOOL
(
"FirstStreamingMedia"
,
FALSE
);
return
false
;
}
// TODO: observer
// TODO: observer
/*
/*
void LLViewerParcelMediaNavigationObserver::onNavigateComplete( const EventType& event_in )
void LLViewerParcelMediaNavigationObserver::onNavigateComplete( const EventType& event_in )
...
...
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