Changeset 8dc4cae4077438c3cfe2cf3f85e751cfd85a4785
- Timestamp:
- 07/06/03 18:22:15
(5 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1057508535 +0000
- git-parent:
[ff373bfcd5372ce83927be8129b1980269048ecb]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1057508535 +0000
- Message:
* INSTALL.win32: added an instruction for using tar to extract the contrib.
* modules/stream_out/transcode.c: added mp3 fourcc.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rb2dd679 |
r8dc4cae |
|
| 1 | | $Id: INSTALL.win32,v 1.16 2003/06/22 16:00:56 gbazin Exp $ |
|---|
| | 1 | $Id: INSTALL.win32,v 1.17 2003/07/06 16:22:15 gbazin Exp $ |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | INSTALL file for the Windows9x/Me/NT4/2k/XP version of the VLC media player |
|---|
| … | … | |
| 94 | 94 | http://www.videolan.org/pub/testing/win32/contrib-20030622-win32-bin.tar.bz2 |
|---|
| 95 | 95 | All you need to do is extract it in your root directory (the include files |
|---|
| 96 | | and libraries will be put in /usr/win32) |
|---|
| | 96 | and libraries will be put in /usr/win32). You can do this with the following |
|---|
| | 97 | command: "tar xjvf contrib-20030622-win32-bin.tar.bz2 -C /" |
|---|
| 97 | 98 | |
|---|
| 98 | 99 | A complete list of the libraries on which we depend can be found here: |
|---|
| r4be7e66 |
r8dc4cae |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001, 2002 VideoLAN |
|---|
| 5 | | * $Id: transcode.c,v 1.22 2003/07/04 16:35:20 sam Exp $ |
|---|
| | 5 | * $Id: transcode.c,v 1.23 2003/07/06 16:22:15 gbazin Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Laurent Aimar <fenrir@via.ecp.fr> |
|---|
| … | … | |
| 480 | 480 | /* audio */ |
|---|
| 481 | 481 | { VLC_FOURCC( 'm', 'p', 'g', 'a' ), CODEC_ID_MP2 }, |
|---|
| | 482 | { VLC_FOURCC( 'm', 'p', '3', ' ' ), CODEC_ID_MP3LAME }, |
|---|
| 482 | 483 | { VLC_FOURCC( 'a', '5', '2', ' ' ), CODEC_ID_AC3 }, |
|---|
| 483 | 484 | { VLC_FOURCC( 'a', 'c', '3', ' ' ), CODEC_ID_AC3 }, |
|---|