Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
9f8d8a7f
Commit
9f8d8a7f
authored
Nov 13, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* merging kasenna changes from 0.8.1 branch to the trunk
r9296:9299 changes
parent
c523828d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
9 deletions
+50
-9
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+6
-8
modules/demux/sgimb.c
modules/demux/sgimb.c
+44
-1
No files found.
modules/demux/livedotcom.cpp
View file @
9f8d8a7f
...
...
@@ -64,7 +64,7 @@ static void Close( vlc_object_t * );
"value should be set in millisecond units." )
#define KASENNA_TEXT N_( "Kasenna RTSP dialect")
#define KASENNA_LONGTEXT N_( "Kasenna server speak
an old and unstandard dialect of RTSP
" \
#define KASENNA_LONGTEXT N_( "Kasenna server speak
s an old and unstandard dialect of RTSP.
" \
"When you set this parameter, VLC will try this dialect for communication. In " \
"this mode you cannot talk to normal RTSP servers." )
...
...
@@ -243,12 +243,12 @@ static int Open ( vlc_object_t *p_this )
sprintf
(
psz_url
,
"rtsp://%s"
,
p_demux
->
psz_path
);
/* Add kasenna option */
if
(
var_CreateGetBool
(
p_demux
,
"rtsp-kasenna"
))
msg_Dbg
(
p_demux
,
"add kasenna option"
);
psz_options
=
p_sys
->
rtsp
->
sendOptionsCmd
(
psz_url
);
if
(
psz_options
)
delete
[]
psz_options
;
p_sdp
=
(
uint8_t
*
)
p_sys
->
rtsp
->
describeURL
(
psz_url
);
p_sdp
=
(
uint8_t
*
)
p_sys
->
rtsp
->
describeURL
(
psz_url
,
NULL
,
var_CreateGetBool
(
p_demux
,
"rtsp-kasenna"
)
);
if
(
p_sdp
==
NULL
)
{
msg_Err
(
p_demux
,
"describeURL failed (%s)"
,
p_sys
->
env
->
getResultMsg
()
);
...
...
@@ -479,10 +479,6 @@ static int Open ( vlc_object_t *p_this )
{
tk
->
fmt
.
i_codec
=
VLC_FOURCC
(
'M'
,
'J'
,
'P'
,
'G'
);
}
else
if
(
!
strcmp
(
sub
->
codecName
(),
"X-SV3V-ES"
)
)
{
tk
->
fmt
.
i_codec
=
VLC_FOURCC
(
'S'
,
'V'
,
'Q'
,
'3'
);
}
else
if
(
!
strcmp
(
sub
->
codecName
(),
"MP4V-ES"
)
)
{
unsigned
int
i_extra
;
...
...
@@ -498,7 +494,9 @@ static int Open ( vlc_object_t *p_this )
delete
[]
p_extra
;
}
}
else
if
(
!
strcmp
(
sub
->
codecName
(),
"X-QT"
)
||
!
strcmp
(
sub
->
codecName
(),
"X-QUICKTIME"
)
)
else
if
(
!
strcmp
(
sub
->
codecName
(),
"X-QT"
)
||
!
strcmp
(
sub
->
codecName
(),
"X-QUICKTIME"
)
||
!
strcmp
(
sub
->
codecName
(),
"X-QDM"
)
||
!
strcmp
(
sub
->
codecName
(),
"X-SV3V-ES"
)
||
!
strcmp
(
sub
->
codecName
(),
"X-SORENSONVIDEO"
)
)
{
tk
->
b_quicktime
=
VLC_TRUE
;
}
...
...
modules/demux/sgimb.c
View file @
9f8d8a7f
...
...
@@ -30,23 +30,66 @@
* This stems from the fact that the MediaBase servers were first introduced by SGI?????.
*
* sgiNameServerHost=host.name.tld
* Obvious: the host hosting this stream
* Stream="xdma://host.name.tld/demo/a_very_cool.mpg"
* Not always present. xdma can be read as RTSP.
* sgiMovieName=/demo/a_very_cool.mpg
* sgiAuxState=1
* The path to the asset
* sgiAuxState=1|2
* AuxState=2 is always Video On Demand (so not Scheduled)
* Not present with Live streams
* sgiLiveFeed=True|False
* Denounces if the stream is live or from assets (Canned?)
* Live appears as a little sattelite dish in the web interface of Kasenna
* sgiFormatName=PARTNER_41_MPEG-4
* The type of stream. One of:
* PARTNER_41_MPEG-4 (RTSP MPEG-4 fully compliant)
* MPEG1-Audio (MP3 Audio streams in MPEG TS)
* MPEG-1 (MPEG 1 A/V in MPEG TS)
* MPEG-2 (MPEG 2 A/V in MPEG TS)
* sgiWidth=720
* The width of the to be received stream. Only present if stream is not Live.
* sgiHeight=576
* The height of the to be received stream. Only present if stream is not Live.
* sgiBitrate=1630208
* The bitrate of the to be received stream. Only present if stream is not Live.
* sgiDuration=378345000
* The duration of the to be received stream. Only present if stream is not Live.
* sgiQTFileBegin
* rtsptext
* rtsp://host.name.tld/demo/a_very_cool.mpg
* sgiQTFileEnd
* Sometimes present. QT will recognize this as a RTSP reference file, if present.
* sgiApplicationName=MediaBaseURL
* Beats me !! :)
* sgiElapsedTime=0
* Time passed since the asset was started (resets for repeating non live assets?)
* sgiMulticastAddress=233.81.233.15
* The multicast IP used for the Multicast feed.
* Also defines if a stream is multicast or not. (blue dot in kasenna web interface)
* sgiMulticastPort=1234
* The multicast port for the same Multicast feed.
* sgiPacketSize=16384
* The packetsize of the UDP frames that Kasenna sends. They should have used a default
* that is a multiple of 188 (TS frame size). Most networks don't support more than 1500 anyways.
* Also, when you loose a frame of this size, imagecorruption is more likely then with smaller
* frames.
* sgiServerVersion=6.1.2
* Version of the server
* sgiRtspPort=554
* TCP port used for RTSP communication
* AutoStart=True
* Start playing automatically
* DeliveryService=cds
* Simulcasted (scheduled unicast) content. (Green dot in Kasenna web interface)
* sgiShowingName=A nice name that everyone likes
* A human readible descriptive title for this stream.
* sgiSid=2311
* Looks like this is the ID of the scheduled asset?
* sgiUserAccount=pid=1724&time=1078527309&displayText=You%20are%20logged%20as%20guest&
* User Authentication. Above is a default guest entry. Not required for RTSP communication.
* sgiUserPassword=
* Password :)
*
*****************************************************************************/
...
...
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