Changeset 246a4e235ac1c30b79318ffd627e1cfe7d8c1ad6
- Timestamp:
- 17/09/06 21:27:40
(2 years ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1158521260 +0000
- git-parent:
[a972b8b70806f4ad57ad7e0026a4a1bf77be29ca]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1158521260 +0000
- Message:
New audioscrobbler/last.fm plugin by Rafaël Carré and Kenneth Ostby.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r586d8f5 |
r246a4e2 |
|
| 18 | 18 | - right/ctrl-click menu in video outputs |
|---|
| 19 | 19 | - support for Apple's remote (courtesy Martin Kahr) |
|---|
| | 20 | |
|---|
| | 21 | Other plugins: |
|---|
| | 22 | * Audioscrobbler / last.fm plugin |
|---|
| 20 | 23 | |
|---|
| 21 | 24 | Nix Port: |
|---|
| r989ceff |
r246a4e2 |
|
| 90 | 90 | Julien Blache <jb at technologeek.org> - disc ejection code |
|---|
| 91 | 91 | kty0ne - WinAmp 5 skin for VLC |
|---|
| | 92 | Kenneth Ostby <kenneo -at- idi -dot- ntnu -dot- no> - Audioscrobbler plugin |
|---|
| 92 | 93 | Kevin H. Patterson <kevpatt at khptech dot com> - Theora framesize calculation patch by Kevin H. Patterson (kevpatt at khptech dot com |
|---|
| 93 | 94 | K. Staring <qdk at quickdekay dot net> - RTSP rewind and fast-forward support |
|---|
| … | … | |
| 125 | 126 | Philippe Van Hecke <philippe at belnet dot be> - SAP header hash patch |
|---|
| 126 | 127 | Pierre Marc Dumuid <pierre.dumuid at adelaide dot edu dot au> - Playlist patches |
|---|
| | 128 | Rafaël Carré <rafael -dot- carre -at- wanadoo -dot- fr> - Audioscrobbler plugin |
|---|
| 127 | 129 | Régis Duchesne <regis at via.ecp.fr> - original VLC code |
|---|
| 128 | 130 | Remco Poortinga <poortinga at telin.nl> - IPv6 multicast patch |
|---|
| r1fa9ce8 |
r246a4e2 |
|
| 1550 | 1550 | ]) |
|---|
| 1551 | 1551 | |
|---|
| 1552 | | |
|---|
| 1553 | | |
|---|
| | 1552 | dnl |
|---|
| | 1553 | dnl Audioscrobbler plugin |
|---|
| | 1554 | dnl |
|---|
| | 1555 | |
|---|
| | 1556 | AC_ARG_ENABLE(audioscrobbler, |
|---|
| | 1557 | [ --enable-audioscrobbler Last.fm submission plugin (default enabled)]) |
|---|
| | 1558 | AS_IF([test "${enable_audioscrobbler}" != "no"], [ |
|---|
| | 1559 | VLC_ADD_PLUGINS([audioscrobbler]) |
|---|
| | 1560 | ]) |
|---|
| 1554 | 1561 | |
|---|
| 1555 | 1562 | dnl |
|---|
| r1fa9ce8 |
r246a4e2 |
|
| 12 | 12 | SOURCES_svg = svg.c |
|---|
| 13 | 13 | SOURCES_profile_parser = profile_parser.c |
|---|
| | 14 | SOURCES_audioscrobbler = audioscrobbler.c |
|---|