Skip to content

Commit

Permalink
Fix Javadoc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
caprica committed Jan 25, 2025
1 parent 1321356 commit a86a556
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -24,10 +24,10 @@
*/
public enum libvlc_video_fit_mode_t {

libvlc_video_fit_none(0), /**< Explicit zoom set by \ref libvlc_video_set_scale */
libvlc_video_fit_smaller(1), /**< Fit inside / to smallest display dimension */
libvlc_video_fit_larger(2), /**< Fit outside / to largest display dimension */
libvlc_video_fit_width(3), /**< Fit to display width */
libvlc_video_fit_none(0), /** Explicit zoom set by \ref libvlc_video_set_scale */
libvlc_video_fit_smaller(1), /** Fit inside / to smallest display dimension */
libvlc_video_fit_larger(2), /** Fit outside / to largest display dimension */
libvlc_video_fit_width(3), /** Fit to display width */
libvlc_video_fit_height(4);

private final int intValue;

0 comments on commit a86a556

Please sign in to comment.