Changeset c704c4afd46601b4e0333525329f71ebbbb397ba
- Timestamp:
- 12/16/07 15:58:43
(9 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1197817123 +0000
- git-parent:
[7831c22d8c8114a13ed17cf9c115564d671c742c]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1197817123 +0000
- Message:
Add warning if people try using an unimplemented aout function (zorglub!!!). This is currently only possible through the qt interface (i haven't tried it myself).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3663d02 |
rc704c4a |
|
| 141 | 141 | |
|---|
| 142 | 142 | vlc_mutex_unlock( &p_aout->mixer_lock ); |
|---|
| 143 | | var_Create( p_this, "audio-desync", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT ); |
|---|
| 144 | | var_Get( p_this, "audio-desync", &val ); |
|---|
| 145 | | p_input->i_desync = val.i_int * 1000; |
|---|
| | 143 | p_input->i_desync = var_CreateGet( p_this, "audio-desync" ) * 1000; |
|---|
| 146 | 144 | |
|---|
| 147 | 145 | p_input_thread = (input_thread_t *)vlc_object_find( p_this, |
|---|
| rd79eca2 |
rc704c4a |
|
| 545 | 545 | { |
|---|
| 546 | 546 | (void)p_this; (void)i_skip; |
|---|
| | 547 | msg_Err( p_this, "FIXME: %s (%s %d) isn't implemented.", __func__, |
|---|
| | 548 | __FILE__, __LINE__ ); |
|---|
| 547 | 549 | return strdup("foobar"); |
|---|
| 548 | 550 | } |
|---|