[vlc-devel] commit: stats: consistence declaration. ( Rémi Duraffort )
git version control
git at videolan.org
Wed Feb 25 19:47:53 CET 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Wed Feb 25 14:14:13 2009 +0100| [df993d1ce79295a84960624dc30c90e0e9bafedd] | committer: Rémi Duraffort
stats: consistence declaration.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=df993d1ce79295a84960624dc30c90e0e9bafedd
---
modules/misc/stats/encoder.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/misc/stats/encoder.c b/modules/misc/stats/encoder.c
index 2cf9c6d..74858ac 100644
--- a/modules/misc/stats/encoder.c
+++ b/modules/misc/stats/encoder.c
@@ -46,7 +46,7 @@ struct encoder_sys_t
* Local prototypes
*****************************************************************************/
static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict );
-static block_t *EncodeAudio( encoder_t *p_enc, picture_t *p_pict );
+static block_t *EncodeAudio( encoder_t *p_enc, aout_buffer_t *p_abuff );
/*****************************************************************************
* OpenDecoder: open the dummy encoder.
@@ -91,9 +91,9 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
/****************************************************************************
* EncodeVideo: the whole thing
****************************************************************************/
-static block_t *EncodeAudio( encoder_t *p_enc, picture_t *p_pict )
+static block_t *EncodeAudio( encoder_t *p_enc, aout_buffer_t *p_abuff )
{
- (void)p_pict;
+ (void)p_abuff;
(void)p_enc;
return NULL;
}
More information about the vlc-devel
mailing list