Changeset 67c4bc3914d88c21ffc711806877cc0f811b166a
- Timestamp:
- 26/04/02 22:18:26
(6 years ago)
- Author:
- Johan Bilien <jobi@videolan.org>
- git-committer:
- Johan Bilien <jobi@videolan.org> 1019852306 +0000
- git-parent:
[62d636ba6ce8cada77245f14d6d9d2ff01d566a9]
- git-author:
- Johan Bilien <jobi@videolan.org> 1019852306 +0000
- Message:
- plugins/mpeg_system/mpeg_ts.c : fixed --program option
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r5a70322 |
r67c4bc3 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2000-2001 VideoLAN |
|---|
| 5 | | * $Id: mpeg_ts.c,v 1.9 2002/04/25 02:10:33 jobi Exp $ |
|---|
| | 5 | * $Id: mpeg_ts.c,v 1.10 2002/04/26 20:18:26 jobi Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Henri Fallon <henri@via.ecp.fr> |
|---|
| … | … | |
| 643 | 643 | p_pgrm_to_select = input_FindProgram( p_input, i_id ); |
|---|
| 644 | 644 | |
|---|
| 645 | | if( p_pgrm_to_select || p_pgrm_to_select == p_es->p_pgrm ) |
|---|
| | 645 | if( p_pgrm_to_select && p_pgrm_to_select == p_es->p_pgrm ) |
|---|
| 646 | 646 | p_input->pf_set_program( p_input, p_pgrm_to_select ); |
|---|
| 647 | 647 | } |
|---|
| … | … | |
| 802 | 802 | p_pgrm_demux = (pgrm_ts_data_t *)p_pgrm->p_demux_data; |
|---|
| 803 | 803 | p_pgrm_demux->i_pcr_pid = p_new_pmt->i_pcr_pid; |
|---|
| 804 | | |
|---|
| | 804 | |
|---|
| 805 | 805 | if( !p_new_pmt->b_current_next || |
|---|
| 806 | 806 | p_pgrm_demux->i_pmt_version == PMT_UNINITIALIZED ) |
|---|