Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sms
c-player
Commits
f6700629
Commit
f6700629
authored
Oct 07, 2015
by
user
Browse files
some stuff
parent
bb20ccc6
Changes
3
Hide whitespace changes
Inline
Side-by-side
scripts/deployGstreamer-dev
View file @
f6700629
...
...
@@ -7,6 +7,9 @@
# http://cgit.freedesktop.org/libva/tree/test/encode/h264encode.c
#
echo
"Make sure you have all the repos in your sources list (contrib and non-free) press enter to continue"
read
#should we install debian packages?
checkdeps
=
"true"
waitaftermodule
=
"true"
...
...
src/.gitignore
View file @
f6700629
...
...
@@ -14,4 +14,4 @@ tcpclient
c-player-np
midicontrol
valgrind.sh
tcp2rtsp
src/main.c
View file @
f6700629
...
...
@@ -124,31 +124,31 @@ main (int argc, char *argv[])
pData
->
feedid
=
atoi
(
optarg
);
break
;
case
's'
:
if
(
strcmp
(
optarg
,
"snowmix"
)
==
0
)
if
(
str
n
cmp
(
optarg
,
"snowmix"
,
7
)
==
0
)
{
pData
->
sink
=
SNOWMIX
;
}
else
if
(
strcmp
(
optarg
,
"rtmp"
)
==
0
)
}
else
if
(
str
n
cmp
(
optarg
,
"rtmp"
,
4
)
==
0
)
{
pData
->
sink
=
RTMP
;
}
else
if
(
strcmp
(
optarg
,
"fake"
)
==
0
)
}
else
if
(
str
n
cmp
(
optarg
,
"fake"
,
4
)
==
0
)
{
pData
->
sink
=
FAKE
;
}
break
;
#ifdef SNOWBIN
case
'a'
:
if
(
strcmp
(
optarg
,
"snowmix"
)
==
0
)
if
(
str
n
cmp
(
optarg
,
"snowmix"
,
7
)
==
0
)
{
pData
->
snow
->
audiosink
=
SNOWMIX
;
}
else
if
(
strcmp
(
optarg
,
"jack"
)
==
0
)
}
else
if
(
str
n
cmp
(
optarg
,
"jack"
,
4
)
==
0
)
{
pData
->
snow
->
audiosink
=
JACK
;
}
else
if
(
strcmp
(
optarg
,
"auto"
)
==
0
)
}
else
if
(
str
n
cmp
(
optarg
,
"auto"
,
4
)
==
0
)
{
pData
->
snow
->
audiosink
=
AUTO
;
}
else
if
(
strcmp
(
optarg
,
"fake"
)
==
0
)
}
else
if
(
str
n
cmp
(
optarg
,
"fake"
,
4
)
==
0
)
{
pData
->
snow
->
audiosink
=
FAKE
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment