]> git.sesse.net Git - vlc/blobdiff - include/vlc/libvlc_media_player.h
amem: i_nb_samples is unsigned, no need for size_t
[vlc] / include / vlc / libvlc_media_player.h
index f89a8593bd9e7bcf36f59a9c1ec4788cc9f1cb79..ad866768471646b631e365c697028a67c697a1dc 100644 (file)
@@ -31,8 +31,6 @@
 #ifndef VLC_LIBVLC_MEDIA_PLAYER_H
 #define VLC_LIBVLC_MEDIA_PLAYER_H 1
 
-# include <stddef.h>
-
 # ifdef __cplusplus
 extern "C" {
 # else
@@ -473,7 +471,7 @@ LIBVLC_API void *libvlc_media_player_get_hwnd ( libvlc_media_player_t *p_mi );
  * \param pts expected play time stamp (see libvlc_delay())
  */
 typedef void (*libvlc_audio_play_cb)(void *data, const void *samples,
-                                     size_t count, int64_t pts);
+                                     unsigned count, int64_t pts);
 
 /**
  * Callback prototype for audio volume change.