Changeset 287b6a68e97c22762091077578835912558005a1
- Timestamp:
- 23/10/03 18:48:45
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1066927725 +0000
- git-parent:
[dda8e39fcf2b35ac22c46edc03ca3fd0b0df1c20]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1066927725 +0000
- Message:
* modules/demux/ogg.c: arrggg... I shouldn't be allowed to commit ;)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rdd9e670 |
r287b6a6 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001 VideoLAN |
|---|
| 5 | | * $Id: ogg.c,v 1.40 2003/10/22 17:12:30 gbazin Exp $ |
|---|
| | 5 | * $Id: ogg.c,v 1.41 2003/10/23 16:48:45 gbazin Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Gildas Bazin <gbazin@netcourrier.com> |
|---|
| … | … | |
| 607 | 607 | } |
|---|
| 608 | 608 | /* Check for Speex header */ |
|---|
| 609 | | if( oggpacket.bytes >= 7 && |
|---|
| | 609 | else if( oggpacket.bytes >= 7 && |
|---|
| 610 | 610 | ! strncmp( &oggpacket.packet[0], "Speex", 5 ) ) |
|---|
| 611 | 611 | { |
|---|