Changeset 00d327ff2c8b29f52f3d95e32a77aac443180d4a
- Timestamp:
- 30/03/03 03:13:37
(6 years ago)
- Author:
- Christophe Massiot <massiot@videolan.org>
- git-committer:
- Christophe Massiot <massiot@videolan.org> 1048986817 +0000
- git-parent:
[912d212ce91ec055651cd2598704d1f5335c79e8]
- git-author:
- Christophe Massiot <massiot@videolan.org> 1048986817 +0000
- Message:
* Resampler plug-in based on CoreAudio?'s AudioConverter?.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7755dab |
r00d327f |
|
| 2631 | 2631 | then |
|---|
| 2632 | 2632 | BUILTINS="${BUILTINS} macosx" |
|---|
| | 2633 | PLUGINS="${PLUGINS} coreaudio_resampler" |
|---|
| 2633 | 2634 | LDFLAGS_macosx="${LDFLAGS_macosx} -framework CoreAudio -framework AudioToolbox -framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC" |
|---|
| | 2635 | LDFLAGS_coreaudio_resampler="${LDFLAGS_coreaudio_resampler} -framework AudioToolbox" |
|---|
| 2634 | 2636 | fi], |
|---|
| 2635 | 2637 | [AC_CHECK_HEADERS(Cocoa/Cocoa.h, |
|---|
| 2636 | 2638 | BUILTINS="${BUILTINS} macosx" |
|---|
| | 2639 | PLUGINS="${PLUGINS} coreaudio_resampler" |
|---|
| 2637 | 2640 | LDFLAGS_macosx="${LDFLAGS_macosx} -framework CoreAudio -framework AudioToolbox -framework IOKit -framework Cocoa -framework Carbon -framework QuickTime -lobjc -ObjC" |
|---|
| | 2641 | LDFLAGS_coreaudio_resampler="${LDFLAGS_coreaudio_resampler} -framework AudioToolbox" |
|---|
| 2638 | 2642 | )]) |
|---|
| 2639 | 2643 | |
|---|
| r75426e2 |
r00d327f |
|
| 4 | 4 | SOURCES_bandlimited_resampler = modules/audio_filter/resampler/bandlimited.c \ |
|---|
| 5 | 5 | modules/audio_filter/resampler/bandlimited.h |
|---|
| | 6 | SOURCES_coreaudio_resampler = modules/audio_filter/resampler/coreaudio.c |
|---|
| r92960f7 |
r00d327f |
|
| 5 | 5 | ***************************************************************************** |
|---|
| 6 | 6 | * Copyright (C) 1998-2002 VideoLAN |
|---|
| 7 | | * $Id: input.c,v 1.227 2003/03/25 17:07:45 gbazin Exp $ |
|---|
| | 7 | * $Id: input.c,v 1.228 2003/03/30 01:13:37 massiot Exp $ |
|---|
| 8 | 8 | * |
|---|
| 9 | 9 | * Authors: Christophe Massiot <massiot@via.ecp.fr> |
|---|
| … | … | |
| 46 | 46 | |
|---|
| 47 | 47 | #include "stream_output.h" |
|---|
| | 48 | #include <vlc/vout.h> |
|---|
| 48 | 49 | |
|---|
| 49 | 50 | #include "interface.h" |
|---|
| … | … | |
| 596 | 597 | vlc_object_detach( p_object ); |
|---|
| 597 | 598 | vlc_object_release( p_object ); |
|---|
| 598 | | vout_Destroy( p_object ); |
|---|
| | 599 | vout_Destroy( (vout_thread_t *)p_object ); |
|---|
| 599 | 600 | } |
|---|
| 600 | 601 | |
|---|