Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
781ce1f3
Commit
781ce1f3
authored
Feb 25, 2007
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed H264 vod (import code from rtp.c, there is a lot of code duplicated here).
parent
479b6976
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
1 deletion
+50
-1
modules/misc/rtsp.c
modules/misc/rtsp.c
+50
-1
No files found.
modules/misc/rtsp.c
View file @
781ce1f3
...
...
@@ -472,6 +472,55 @@ static int MediaAddES( vod_t *p_vod, vod_media_t *p_media, es_format_t *p_fmt )
case
VLC_FOURCC
(
'h'
,
'2'
,
'6'
,
'4'
):
p_es
->
i_payload_type
=
p_media
->
i_payload_type
++
;
p_es
->
psz_rtpmap
=
strdup
(
"H264/90000"
);
p_es
->
psz_fmtp
=
NULL
;
/* FIXME AAAAAAAAAAAARRRRRRRRGGGG copied from stream_out/rtp.c */
if
(
p_fmt
->
i_extra
>
0
)
{
uint8_t
*
p_buffer
=
p_fmt
->
p_extra
;
int
i_buffer
=
p_fmt
->
i_extra
;
char
*
p_64_sps
=
NULL
;
char
*
p_64_pps
=
NULL
;
char
hexa
[
6
+
1
];
while
(
i_buffer
>
4
&&
p_buffer
[
0
]
==
0
&&
p_buffer
[
1
]
==
0
&&
p_buffer
[
2
]
==
0
&&
p_buffer
[
3
]
==
1
)
{
const
int
i_nal_type
=
p_buffer
[
4
]
&
0x1f
;
int
i_offset
;
int
i_size
=
0
;
i_size
=
i_buffer
;
for
(
i_offset
=
4
;
i_offset
+
3
<
i_buffer
;
i_offset
++
)
{
if
(
p_buffer
[
i_offset
]
==
0
&&
p_buffer
[
i_offset
+
1
]
==
0
&&
p_buffer
[
i_offset
+
2
]
==
0
&&
p_buffer
[
i_offset
+
3
]
==
1
)
{
/* we found another startcode */
i_size
=
i_offset
;
break
;
}
}
if
(
i_nal_type
==
7
)
{
p_64_sps
=
vlc_b64_encode_binary
(
&
p_buffer
[
4
],
i_size
-
4
);
sprintf_hexa
(
hexa
,
&
p_buffer
[
5
],
3
);
}
else
if
(
i_nal_type
==
8
)
{
p_64_pps
=
vlc_b64_encode_binary
(
&
p_buffer
[
4
],
i_size
-
4
);
}
i_buffer
-=
i_size
;
p_buffer
+=
i_size
;
}
/* */
if
(
p_64_sps
&&
p_64_pps
)
asprintf
(
&
p_es
->
psz_fmtp
,
"packetization-mode=1;profile-level-id=%s;sprop-parameter-sets=%s,%s;"
,
hexa
,
p_64_sps
,
p_64_pps
);
if
(
p_64_sps
)
free
(
p_64_sps
);
if
(
p_64_pps
)
free
(
p_64_pps
);
}
if
(
!
p_es
->
psz_fmtp
)
p_es
->
psz_fmtp
=
strdup
(
"packetization-mode=1"
);
break
;
case
VLC_FOURCC
(
'm'
,
'p'
,
'4'
,
'v'
):
...
...
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