Commit 7de52220 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

RTMP: totally broken, disabled for the time being

parent 0854aab5
...@@ -142,6 +142,7 @@ Removed modules: ...@@ -142,6 +142,7 @@ Removed modules:
* cmml and tarkin codecs are removed because they are dead codecs. * cmml and tarkin codecs are removed because they are dead codecs.
* realaudio codecs are removed in favor of libavcodec * realaudio codecs are removed in favor of libavcodec
* access_file removed in favor of filesystem * access_file removed in favor of filesystem
* RTMP input and output
Changes between 1.0.4 and 1.0.5: Changes between 1.0.4 and 1.0.5:
......
...@@ -71,7 +71,6 @@ libvlc_LTLIBRARIES += \ ...@@ -71,7 +71,6 @@ libvlc_LTLIBRARIES += \
libaccess_http_plugin.la \ libaccess_http_plugin.la \
libaccess_ftp_plugin.la \ libaccess_ftp_plugin.la \
libaccess_fake_plugin.la \ libaccess_fake_plugin.la \
libaccess_rtmp_plugin.la \
libaccess_imem_plugin.la \ libaccess_imem_plugin.la \
libaccess_attachment_plugin.la \ libaccess_attachment_plugin.la \
$(NULL) $(NULL)
...@@ -82,5 +81,7 @@ libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \ ...@@ -82,5 +81,7 @@ libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \
libxcb_screen_plugin_la_LIBADD = $(AM_LIBADD) \ libxcb_screen_plugin_la_LIBADD = $(AM_LIBADD) \
$(XCB_LIBS) $(XCB_LIBS)
libxcb_screen_plugin_la_DEPENDENCIES = 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) libvlc_LTLIBRARIES += $(LTLIBxcb_screen)
...@@ -2196,6 +2196,7 @@ amf_decode_string( uint8_t **buffer ) ...@@ -2196,6 +2196,7 @@ amf_decode_string( uint8_t **buffer )
length = ntoh16( *(uint16_t *) *buffer ); length = ntoh16( *(uint16_t *) *buffer );
*buffer += sizeof( uint16_t ); *buffer += sizeof( uint16_t );
#error This size is wrong and breaks just about everything.
if( length > sizeof( *buffer ) / sizeof( uint8_t )) if( length > sizeof( *buffer ) / sizeof( uint8_t ))
return NULL; return NULL;
......
...@@ -18,5 +18,7 @@ libvlc_LTLIBRARIES += \ ...@@ -18,5 +18,7 @@ libvlc_LTLIBRARIES += \
libaccess_output_file_plugin.la \ libaccess_output_file_plugin.la \
libaccess_output_udp_plugin.la \ libaccess_output_udp_plugin.la \
libaccess_output_http_plugin.la \ libaccess_output_http_plugin.la \
$(NULL)
EXTRA_LTLIBRARIES += \
libaccess_output_rtmp_plugin.la \ libaccess_output_rtmp_plugin.la \
$(NULL) $(NULL)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment