Changeset 0a60a95fed8919588e440b5b4b5786449a79151f
- Timestamp:
- 18/08/07 16:44:47
(1 year ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1187448287 +0000
- git-parent:
[2dd551cb0f3b48228f499bc4024063d88bb05457]
- git-author:
- Rafaël Carré <funman@videolan.org> 1187448287 +0000
- Message:
Disables meta reading in vorbis codec when taglib plugin is being built
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7ca5e9c |
r0a60a95 |
|
| 1728 | 1728 | AS_IF([test "${enable_taglib}" != "no"],[ |
|---|
| 1729 | 1729 | PKG_CHECK_MODULES(TAGLIB, taglib, |
|---|
| 1730 | | [ VLC_ADD_PLUGINS([taglib]) |
|---|
| | 1730 | [ AC_DEFINE( HAVE_TAGLIB, 1, [Define if you have taglib plugin built] ) |
|---|
| | 1731 | VLC_ADD_PLUGINS([taglib]) |
|---|
| 1731 | 1732 | VLC_ADD_LDFLAGS([taglib],[$TAGLIB_LIBS -lz]) |
|---|
| 1732 | 1733 | VLC_ADD_CXXFLAGS([taglib],[$TAGLIB_CFLAGS]) ], |
|---|
| r51880eb |
r0a60a95 |
|
| 137 | 137 | static block_t *SendPacket( decoder_t *, ogg_packet *, block_t * ); |
|---|
| 138 | 138 | |
|---|
| | 139 | #ifndef HAVE_TAGLIB |
|---|
| 139 | 140 | static void ParseVorbisComments( decoder_t * ); |
|---|
| | 141 | #endif |
|---|
| 140 | 142 | |
|---|
| 141 | 143 | static void ConfigureChannelOrder(int *, int, uint32_t, vlc_bool_t ); |
|---|
| … | … | |
| 433 | 435 | return VLC_EGENERIC; |
|---|
| 434 | 436 | } |
|---|
| | 437 | #ifndef HAVE_TAGLIB |
|---|
| 435 | 438 | ParseVorbisComments( p_dec ); |
|---|
| | 439 | #endif |
|---|
| 436 | 440 | |
|---|
| 437 | 441 | /* The next packet in order is the codebooks header |
|---|
| … | … | |
| 606 | 610 | } |
|---|
| 607 | 611 | |
|---|
| 608 | | /***************************************************************************** |
|---|
| 609 | | * ParseVorbisComments: FIXME should be done in demuxer |
|---|
| | 612 | #ifndef HAVE_TAGLIB |
|---|
| | 613 | /***************************************************************************** |
|---|
| | 614 | * ParseVorbisComments |
|---|
| 610 | 615 | *****************************************************************************/ |
|---|
| 611 | 616 | static void ParseVorbisComments( decoder_t *p_dec ) |
|---|
| … | … | |
| 723 | 728 | } |
|---|
| 724 | 729 | } |
|---|
| | 730 | #endif |
|---|
| 725 | 731 | |
|---|
| 726 | 732 | /***************************************************************************** |
|---|