Changeset 080410c1474d14cc6358123f426e58ac696a6b57
- Timestamp:
- 17/06/08 18:01:06
(4 months ago)
- Author:
- Rémi Denis-Courmont <rdenis@simphalempin.com>
- git-committer:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1213718466 +0300
- git-parent:
[5a601aac516e2e9256024746cdc50ae19ebe4925]
- git-author:
- Rémi Denis-Courmont <rdenis@simphalempin.com> 1213718466 +0300
- Message:
AVI: do not ask whether to fix the index for non-seekable streams
Based on patch from Bill C Riemers
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc351872 |
r080410c |
|
| 662 | 662 | { |
|---|
| 663 | 663 | msg_Warn( p_demux, "broken or missing index, 'seek' will be " |
|---|
| 664 | | "axproximative or will have strange behaviour" ); |
|---|
| | 664 | "approximative or will exhibit strange behavior" ); |
|---|
| 665 | 665 | if( i_do_index == 0 && !b_index ) |
|---|
| 666 | 666 | { |
|---|
| | 667 | if( !p_sys->b_seekable ) { |
|---|
| | 668 | b_index = true; |
|---|
| | 669 | goto aviindex; |
|---|
| | 670 | } |
|---|
| 667 | 671 | int i_create; |
|---|
| 668 | 672 | i_create = intf_UserYesNo( p_demux, _("AVI Index") , |
|---|