Changeset 89ee60c17afe2e97a2e9d435720d3435b657145a
- Timestamp:
- 16/12/02 00:39:41
(6 years ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1039995581 +0000
- git-parent:
[4c0de20eff23a7b91749815aa2b5d8a19062c0ff]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1039995581 +0000
- Message:
- modules/mux/mpeg/*: should fix builtin compilation
- modules/access/ftp.c : an ftp access, buggy but it begins to work.
The main issue is about password confidentiality so you must know
what you are doing :((
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r84ae579 |
r89ee60c |
|
| 10 | 10 | E: fenrir@via.ecp.fr |
|---|
| 11 | 11 | C: fenrir |
|---|
| 12 | | D: AVI demultiplexer |
|---|
| 13 | | D: MPEG-4, Div & OpenDivX decoder (ffmpeg) |
|---|
| | 12 | D: avi, asf/wmv/wma, mp4/mov, mp3, aac, wav demultiplexers |
|---|
| | 13 | D: MPEG-4, Div & OpenDivX and various decoders (ffmpeg) |
|---|
| | 14 | D: AAC decoder (libfaad2) |
|---|
| | 15 | D: cinepak, adpcm, araw decoders |
|---|
| | 16 | D: Subtile file parser. |
|---|
| | 17 | D: mms, ftp access |
|---|
| | 18 | D: Stream output |
|---|
| 14 | 19 | S: France |
|---|
| 15 | 20 | |
|---|
| … | … | |
| 369 | 374 | C: titer |
|---|
| 370 | 375 | D: BeOS module fixes and enhancements |
|---|
| | 376 | D: Stream output |
|---|
| 371 | 377 | S: France |
|---|
| 372 | 378 | |
|---|
| r44656b9 |
r89ee60c |
|
| 136 | 136 | LDFLAGS_access_rtp="${LDFLAGS_access_rtp} -lws2_32" |
|---|
| 137 | 137 | LDFLAGS_access_udp="${LDFLAGS_access_udp} -lws2_32" |
|---|
| | 138 | LDFLAGS_access_ftp="${LDFLAGS_access_ftp} -lws2_32" |
|---|
| 138 | 139 | LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lws2_32" |
|---|
| 139 | 140 | LDFLAGS_rc="${LDFLAGS_rc} -lws2_32" |
|---|
| … | … | |
| 274 | 275 | LDFLAGS_access_rtp="${LDFLAGS_access_rtp} -lsocket" |
|---|
| 275 | 276 | LDFLAGS_access_udp="${LDFLAGS_access_udp} -lsocket" |
|---|
| | 277 | LDFLAGS_access_ftp="${LDFLAGS_access_ftp} -lsocket" |
|---|
| 276 | 278 | LDFLAGS_sap="${LDFLAGS_sap} -lsocket" |
|---|
| 277 | 279 | LDFLAGS_access_output_udp="${LDFLAGS_access_output_udp} -lsocket" |
|---|
| … | … | |
| 698 | 700 | PLUGINS="${PLUGINS} id3 m3u" |
|---|
| 699 | 701 | PLUGINS="${PLUGINS} wav araw demuxdump demuxsub adpcm" |
|---|
| 700 | | PLUGINS="${PLUGINS} access_udp access_http access_rtp ipv4 access_mms sap" |
|---|
| | 702 | PLUGINS="${PLUGINS} access_udp access_http access_rtp ipv4 access_mms sap access_ftp" |
|---|
| 701 | 703 | |
|---|
| 702 | 704 | dnl |
|---|
| r8641281 |
r89ee60c |
|
| 3 | 3 | SOURCES_access_http = modules/access/http.c |
|---|
| 4 | 4 | SOURCES_access_rtp = modules/access/rtp.c |
|---|
| | 5 | SOURCES_access_ftp = modules/access/ftp.c |
|---|
| rf8bf106 |
r89ee60c |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: pes.c,v 1.1 2002/12/14 21:32:41 fenrir Exp $ |
|---|
| | 5 | * $Id: pes.c,v 1.2 2002/12/15 23:39:41 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 47 | 47 | #include "bits.h" |
|---|
| 48 | 48 | |
|---|
| 49 | | int EStoPES( sout_instance_t *p_sout, |
|---|
| 50 | | sout_buffer_t **pp_pes, |
|---|
| 51 | | sout_buffer_t *p_es, |
|---|
| 52 | | int i_stream_id, |
|---|
| 53 | | int b_mpeg2 ) |
|---|
| | 49 | int E_( EStoPES )( sout_instance_t *p_sout, |
|---|
| | 50 | sout_buffer_t **pp_pes, |
|---|
| | 51 | sout_buffer_t *p_es, |
|---|
| | 52 | int i_stream_id, |
|---|
| | 53 | int b_mpeg2 ) |
|---|
| 54 | 54 | { |
|---|
| 55 | 55 | sout_buffer_t *p_pes; |
|---|
| rf8bf106 |
r89ee60c |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: pes.h,v 1.1 2002/12/14 21:32:41 fenrir Exp $ |
|---|
| | 5 | * $Id: pes.h,v 1.2 2002/12/15 23:39:41 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 34 | 34 | |
|---|
| 35 | 35 | |
|---|
| 36 | | int EStoPES( sout_instance_t *p_sout, |
|---|
| 37 | | sout_buffer_t **pp_pes, sout_buffer_t *p_es, |
|---|
| 38 | | int i_stream_id, int b_mpeg2 ); |
|---|
| | 36 | int E_( EStoPES )( sout_instance_t *p_sout, |
|---|
| | 37 | sout_buffer_t **pp_pes, sout_buffer_t *p_es, |
|---|
| | 38 | int i_stream_id, int b_mpeg2 ); |
|---|
| rf8bf106 |
r89ee60c |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: ps.c,v 1.1 2002/12/14 21:32:41 fenrir Exp $ |
|---|
| | 5 | * $Id: ps.c,v 1.2 2002/12/15 23:39:41 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 351 | 351 | |
|---|
| 352 | 352 | p_data = sout_FifoGet( p_fifo ); |
|---|
| 353 | | EStoPES( p_sout, &p_data, p_data, p_stream->i_stream_id, 1); |
|---|
| | 353 | E_( EStoPES )( p_sout, &p_data, p_data, p_stream->i_stream_id, 1); |
|---|
| 354 | 354 | p_sout->pf_write( p_sout, p_data ); |
|---|
| 355 | 355 | |
|---|
| rf8bf106 |
r89ee60c |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: ts.c,v 1.1 2002/12/14 21:32:41 fenrir Exp $ |
|---|
| | 5 | * $Id: ts.c,v 1.2 2002/12/15 23:39:41 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 567 | 567 | i_length = p_data->i_length; |
|---|
| 568 | 568 | |
|---|
| 569 | | EStoPES( p_sout, &p_data, p_data, p_stream->i_stream_id, 1); |
|---|
| | 569 | E_( EStoPES )( p_sout, &p_data, p_data, p_stream->i_stream_id, 1); |
|---|
| 570 | 570 | PEStoTS( p_sout, &p_data, p_data, p_stream ); |
|---|
| 571 | 571 | |
|---|