Changeset 1ebdbd04e56816857e31a2fab2a3bed1405df827
- Timestamp:
- 13/11/02 21:23:21
(6 years ago)
- Author:
- Laurent Aimar <fenrir@videolan.org>
- git-committer:
- Laurent Aimar <fenrir@videolan.org> 1037219001 +0000
- git-parent:
[5de3e045e3d5cae53d526d2c6898926a7f1e43c9]
- git-author:
- Laurent Aimar <fenrir@videolan.org> 1037219001 +0000
- Message:
access/* : don't override demux setting made by user.
modules/demux/demuxdump.c : a little demux that dump raw stream.
(should work with all access...)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r669c88b |
r1ebdbd0 |
|
| 585 | 585 | PLUGINS="${PLUGINS} i420_rgb i420_yuy2 i422_yuy2 i420_ymga" |
|---|
| 586 | 586 | PLUGINS="${PLUGINS} id3 m3u" |
|---|
| 587 | | PLUGINS="${PLUGINS} wav araw" |
|---|
| | 587 | PLUGINS="${PLUGINS} wav araw demuxdump" |
|---|
| 588 | 588 | |
|---|
| 589 | 589 | dnl |
|---|
| rd532cf3 |
r1ebdbd0 |
|
| 9 | 9 | ***************************************************************************** |
|---|
| 10 | 10 | * Copyright (C) 1998-2001 VideoLAN |
|---|
| 11 | | * $Id: access.c,v 1.4 2002/11/08 10:26:52 gbazin Exp $ |
|---|
| | 11 | * $Id: access.c,v 1.5 2002/11/13 20:23:21 fenrir Exp $ |
|---|
| 12 | 12 | * |
|---|
| 13 | 13 | * Author: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 253 | 253 | vlc_mutex_unlock( &p_input->stream.stream_lock ); |
|---|
| 254 | 254 | |
|---|
| 255 | | p_input->psz_demux = "dvdold"; |
|---|
| | 255 | if( !p_input->psz_demux || !*p_input->psz_demux ) |
|---|
| | 256 | { |
|---|
| | 257 | p_input->psz_demux = "dvdold"; |
|---|
| | 258 | } |
|---|
| 256 | 259 | |
|---|
| 257 | 260 | return 0; |
|---|
| r8b09b55 |
r1ebdbd0 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001 VideoLAN |
|---|
| 5 | | * $Id: access.c,v 1.5 2002/11/06 18:07:57 sam Exp $ |
|---|
| | 5 | * $Id: access.c,v 1.6 2002/11/13 20:23:21 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Author: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 183 | 183 | vlc_mutex_unlock( &p_input->stream.stream_lock ); |
|---|
| 184 | 184 | |
|---|
| 185 | | p_input->psz_demux = "dvdplay"; |
|---|
| | 185 | if( !p_input->psz_demux || !*p_input->psz_demux ) |
|---|
| | 186 | { |
|---|
| | 187 | p_input->psz_demux = "dvdplay"; |
|---|
| | 188 | } |
|---|
| 186 | 189 | |
|---|
| 187 | 190 | /* FIXME: we might lose variables here */ |
|---|
| rd532cf3 |
r1ebdbd0 |
|
| 7 | 7 | ***************************************************************************** |
|---|
| 8 | 8 | * Copyright (C) 2001 VideoLAN |
|---|
| 9 | | * $Id: input.c,v 1.8 2002/11/08 10:26:52 gbazin Exp $ |
|---|
| | 9 | * $Id: input.c,v 1.9 2002/11/13 20:23:21 fenrir Exp $ |
|---|
| 10 | 10 | * |
|---|
| 11 | 11 | * Author: St�ane Borel <stef@via.ecp.fr> |
|---|
| … | … | |
| 420 | 420 | vlc_mutex_unlock( &p_input->stream.stream_lock ); |
|---|
| 421 | 421 | |
|---|
| 422 | | p_input->psz_demux = "dvdread"; |
|---|
| | 422 | if( !p_input->psz_demux || !*p_input->psz_demux ) |
|---|
| | 423 | { |
|---|
| | 424 | p_input->psz_demux = "dvdread"; |
|---|
| | 425 | } |
|---|
| 423 | 426 | |
|---|
| 424 | 427 | return 0; |
|---|
| rdf7cbb7 |
r1ebdbd0 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: rtp.c,v 1.5 2002/11/12 13:57:12 sam Exp $ |
|---|
| | 5 | * $Id: rtp.c,v 1.6 2002/11/13 20:23:21 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Tristan Leteurtre <tooney@via.ecp.fr> |
|---|
| … | … | |
| 269 | 269 | p_access_data->i_handle = socket_desc.i_handle; |
|---|
| 270 | 270 | p_input->i_mtu = socket_desc.i_mtu; |
|---|
| 271 | | |
|---|
| 272 | | p_input->psz_demux = "ts"; |
|---|
| | 271 | if( !p_input->psz_demux || !*p_input->psz_demux ) |
|---|
| | 272 | { |
|---|
| | 273 | p_input->psz_demux = "ts"; |
|---|
| | 274 | } |
|---|
| 273 | 275 | |
|---|
| 274 | 276 | return( 0 ); |
|---|
| r2401b66 |
r1ebdbd0 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2000 VideoLAN |
|---|
| 5 | | * $Id: vcd.c,v 1.10 2002/11/06 15:41:29 jobi Exp $ |
|---|
| | 5 | * $Id: vcd.c,v 1.11 2002/11/13 20:23:21 fenrir Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Author: Johan Bilien <jobi@via.ecp.fr> |
|---|
| … | … | |
| 258 | 258 | vlc_mutex_unlock( &p_input->stream.stream_lock ); |
|---|
| 259 | 259 | |
|---|
| 260 | | p_input->psz_demux = "ps"; |
|---|
| | 260 | if( !p_input->psz_demux || !*p_input->psz_demux ) |
|---|
| | 261 | { |
|---|
| | 262 | p_input->psz_demux = "ps"; |
|---|
| | 263 | } |
|---|
| 261 | 264 | |
|---|
| 262 | 265 | return 0; |
|---|
| r669c88b |
r1ebdbd0 |
|
| 2 | 2 | SOURCES_ogg = modules/demux/ogg.c |
|---|
| 3 | 3 | SOURCES_m3u = modules/demux/m3u.c |
|---|
| | 4 | SOURCES_demuxdump = modules/demux/demuxdump.c |
|---|