Changeset a9e55ea669697aceb47f2adce3c7f3da1ea1ea27
- Timestamp:
- 05/24/08 18:09:33
(3 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1211645373 -0700
- git-parent:
[567cacc077f1806b56e33d7f5ec56e0c578ce6d1]
- git-author:
- Miguel Angel Cabrera Moya <madmac2501@gmail.com> 1210023077 +0200
- Message:
RTMP access output module
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r67ad2d4 |
ra9e55ea |
|
| 519 | 519 | AC_CHECK_FUNCS(send,,[ |
|---|
| 520 | 520 | AC_CHECK_LIB(socket,send,[ |
|---|
| 521 | | VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp sap access_output_udp stream_out_standard growl_udp],[-lsocket]) |
|---|
| | 521 | VLC_ADD_LIBS([access_http access_mms access_udp access_tcp access_ftp access_rtmp sap access_output_udp access_output_rtmp stream_out_standard growl_udp],[-lsocket]) |
|---|
| 522 | 522 | ]) |
|---|
| 523 | 523 | ]) |
|---|
| r469cfd7 |
ra9e55ea |
|
| 4 | 4 | SOURCES_access_output_http = http.c bonjour.c bonjour.h |
|---|
| 5 | 5 | SOURCES_access_output_shout = shout.c |
|---|
| | 6 | SOURCES_access_output_rtmp = rtmp.c ../access/rtmp/rtmp_amf_flv.c ../access/rtmp/rtmp_amf_flv.h |
|---|
| 6 | 7 | |
|---|
| 7 | 8 | libvlc_LTLIBRARIES += \ |
|---|
| … | … | |
| 10 | 11 | libaccess_output_udp_plugin.la \ |
|---|
| 11 | 12 | libaccess_output_http_plugin.la \ |
|---|
| | 13 | libaccess_output_rtmp_plugin.la \ |
|---|
| 12 | 14 | $(NULL) |
|---|