Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
7de52220
Commit
7de52220
authored
Mar 07, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RTMP: totally broken, disabled for the time being
parent
0854aab5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
2 deletions
+7
-2
NEWS
NEWS
+1
-0
modules/access/Modules.am
modules/access/Modules.am
+3
-2
modules/access/rtmp/rtmp_amf_flv.c
modules/access/rtmp/rtmp_amf_flv.c
+1
-0
modules/access_output/Modules.am
modules/access_output/Modules.am
+2
-0
No files found.
NEWS
View file @
7de52220
...
...
@@ -142,6 +142,7 @@ Removed modules:
* cmml and tarkin codecs are removed because they are dead codecs.
* realaudio codecs are removed in favor of libavcodec
* access_file removed in favor of filesystem
* RTMP input and output
Changes between 1.0.4 and 1.0.5:
...
...
modules/access/Modules.am
View file @
7de52220
...
...
@@ -71,7 +71,6 @@ libvlc_LTLIBRARIES += \
libaccess_http_plugin.la \
libaccess_ftp_plugin.la \
libaccess_fake_plugin.la \
libaccess_rtmp_plugin.la \
libaccess_imem_plugin.la \
libaccess_attachment_plugin.la \
$(NULL)
...
...
@@ -82,5 +81,7 @@ libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \
libxcb_screen_plugin_la_LIBADD = $(AM_LIBADD) \
$(XCB_LIBS)
libxcb_screen_plugin_la_DEPENDENCIES =
EXTRA_LTLIBRARIES += libxcb_screen_plugin.la
EXTRA_LTLIBRARIES += \
libaccess_rtmp_plugin.la \
libxcb_screen_plugin.la
libvlc_LTLIBRARIES += $(LTLIBxcb_screen)
modules/access/rtmp/rtmp_amf_flv.c
View file @
7de52220
...
...
@@ -2196,6 +2196,7 @@ amf_decode_string( uint8_t **buffer )
length
=
ntoh16
(
*
(
uint16_t
*
)
*
buffer
);
*
buffer
+=
sizeof
(
uint16_t
);
#error This size is wrong and breaks just about everything.
if
(
length
>
sizeof
(
*
buffer
)
/
sizeof
(
uint8_t
))
return
NULL
;
...
...
modules/access_output/Modules.am
View file @
7de52220
...
...
@@ -18,5 +18,7 @@ libvlc_LTLIBRARIES += \
libaccess_output_file_plugin.la \
libaccess_output_udp_plugin.la \
libaccess_output_http_plugin.la \
$(NULL)
EXTRA_LTLIBRARIES += \
libaccess_output_rtmp_plugin.la \
$(NULL)
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