Browse Source

Added missing parameter declaration to fix warnings

Signed-off-by: Felix Paul Kühne <felix@feepk.net>
Kevin Bettin 7 years ago
parent
commit
a3622aa436
1 changed files with 5 additions and 5 deletions
  1. 5 5
      Headers/Public/VLCMediaPlayer.h

+ 5 - 5
Headers/Public/VLCMediaPlayer.h

@@ -260,7 +260,7 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
  * Enable or disable deinterlace and specify which filter to use
  * Enable or disable deinterlace and specify which filter to use
  *
  *
  *
  *
- * \param VLCDeinterlace - enable, disable or auto
+ * \param deinterlace - enable, disable or auto
  * \param name of deinterlace filter to use (availability depends on underlying VLC version).
  * \param name of deinterlace filter to use (availability depends on underlying VLC version).
  */
  */
 - (void)setDeinterlace:(VLCDeinterlace)deinterlace withFilter:(NSString *)name;
 - (void)setDeinterlace:(VLCDeinterlace)deinterlace withFilter:(NSString *)name;
@@ -774,10 +774,10 @@ extern NSString *const VLCTitleDescriptionIsMenu;
 
 
 /**
 /**
  * Updates viewpoint with given values.
  * Updates viewpoint with given values.
- * \param view point yaw in degrees  ]-180;180]
- * \param view point pitch in degrees  ]-90;90]
- * \param view point roll in degrees ]-180;180]
- * \param field of view in degrees ]0;180[ (default 80.)
+ * \param yaw view point yaw in degrees  ]-180;180]
+ * \param pitch view point pitch in degrees  ]-90;90]
+ * \param roll view point roll in degrees ]-180;180]
+ * \param fov field of view in degrees ]0;180[ (default 80.)
  * \param absolute if true replace the old viewpoint with the new one. If
  * \param absolute if true replace the old viewpoint with the new one. If
  * false, increase/decrease it.
  * false, increase/decrease it.
  * \return NO in case of error, YES otherwise
  * \return NO in case of error, YES otherwise