Changeset bda958187b1b990d74660bcc2f821fb7fbe86684
- Timestamp:
- 06/18/08 12:13:37
(2 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1213784017 +0200
- git-parent:
[662e93752f5b54859104f82e1eb7a6136621e591]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1212998122 +0200
- Message:
Cosmetics.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdd8d083 |
rbda9581 |
|
| 389 | 389 | !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) ) |
|---|
| 390 | 390 | { |
|---|
| 391 | | if( !b_new && !p_sys->b_have_pack && |
|---|
| | 391 | if( !b_new && !p_sys->b_have_pack && |
|---|
| 392 | 392 | (tk->fmt.i_cat == AUDIO_ES) && |
|---|
| 393 | 393 | (p_pkt->i_pts > 0) ) |
|---|
| rc7cd0ac |
rbda9581 |
|
| 48 | 48 | |
|---|
| 49 | 49 | /* Title infos for that input */ |
|---|
| 50 | | bool b_title_demux; /* Titles/Seekpoints provided by demux */ |
|---|
| | 50 | bool b_title_demux; /* Titles/Seekpoints provided by demux */ |
|---|
| 51 | 51 | int i_title; |
|---|
| 52 | 52 | input_title_t **title; |
|---|
| … | … | |
| 66 | 66 | bool b_rescale_ts; |
|---|
| 67 | 67 | |
|---|
| 68 | | bool b_eof; /* eof of demuxer */ |
|---|
| | 68 | bool b_eof; /* eof of demuxer */ |
|---|
| 69 | 69 | double f_fps; |
|---|
| 70 | 70 | |
|---|
| … | … | |
| 81 | 81 | |
|---|
| 82 | 82 | /* Global properties */ |
|---|
| 83 | | bool b_can_pause; |
|---|
| 84 | | bool b_can_rate_control; |
|---|
| | 83 | bool b_can_pause; |
|---|
| | 84 | bool b_can_rate_control; |
|---|
| 85 | 85 | |
|---|
| 86 | 86 | int i_rate; |
|---|
| … | … | |
| 106 | 106 | |
|---|
| 107 | 107 | /* Output */ |
|---|
| 108 | | es_out_t *p_es_out; |
|---|
| | 108 | es_out_t *p_es_out; |
|---|
| 109 | 109 | sout_instance_t *p_sout; /* XXX Move it to es_out ? */ |
|---|
| 110 | | bool b_out_pace_control; /* idem ? */ |
|---|
| | 110 | bool b_out_pace_control; /* idem ? */ |
|---|
| 111 | 111 | |
|---|
| 112 | 112 | /* Main input properties */ |
|---|
| … | … | |
| 364 | 364 | int i_synchro_state; |
|---|
| 365 | 365 | |
|---|
| 366 | | bool b_master; |
|---|
| | 366 | bool b_master; |
|---|
| 367 | 367 | |
|---|
| 368 | 368 | int i_rate; |
|---|
| … | … | |
| 467 | 467 | vlc_iconv_t conv; |
|---|
| 468 | 468 | int i_char_width; |
|---|
| 469 | | bool b_little_endian; |
|---|
| | 469 | bool b_little_endian; |
|---|
| 470 | 470 | }; |
|---|
| 471 | 471 | |
|---|