Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
cec69db7
Project 'savoirfairelinux/ring-daemon' was moved to 'savoirfairelinux/jami-daemon'. Please update any links and bookmarks that may still have the old path.
Commit
cec69db7
authored
11 years ago
by
Tristan Matthews
Browse files
Options
Downloads
Patches
Plain Diff
video_mixer: pass string by reference
parent
96614853
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
daemon/src/video/video_mixer.cpp
+1
-1
1 addition, 1 deletion
daemon/src/video/video_mixer.cpp
daemon/src/video/video_mixer.h
+1
-1
1 addition, 1 deletion
daemon/src/video/video_mixer.h
with
2 additions
and
2 deletions
daemon/src/video/video_mixer.cpp
+
1
−
1
View file @
cec69db7
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
namespace
sfl_video
{
namespace
sfl_video
{
VideoMixer
::
VideoMixer
(
const
std
::
string
id
)
:
VideoMixer
::
VideoMixer
(
const
std
::
string
&
id
)
:
VideoGenerator
::
VideoGenerator
()
VideoGenerator
::
VideoGenerator
()
,
id_
(
id
)
,
id_
(
id
)
,
width_
(
0
)
,
width_
(
0
)
...
...
This diff is collapsed.
Click to expand it.
daemon/src/video/video_mixer.h
+
1
−
1
View file @
cec69db7
...
@@ -49,7 +49,7 @@ class VideoMixer :
...
@@ -49,7 +49,7 @@ class VideoMixer :
public
VideoFramePassiveReader
public
VideoFramePassiveReader
{
{
public:
public:
VideoMixer
(
const
std
::
string
id
_
);
VideoMixer
(
const
std
::
string
&
id
);
virtual
~
VideoMixer
();
virtual
~
VideoMixer
();
void
setDimensions
(
int
width
,
int
height
);
void
setDimensions
(
int
width
,
int
height
);
...
...
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