Преглед на файлове

libobs: Move function declarations to correct spot

These function declarations were in the wrong section.
jp9000 преди 7 години
родител
ревизия
c43702e335
променени са 1 файла, в които са добавени 8 реда и са изтрити 8 реда
  1. 8 8
      libobs/obs.h

+ 8 - 8
libobs/obs.h

@@ -674,6 +674,14 @@ EXPORT void obs_remove_raw_video_callback(
 		void (*callback)(void *param, struct video_data *frame),
 		void (*callback)(void *param, struct video_data *frame),
 		void *param);
 		void *param);
 
 
+EXPORT uint64_t obs_get_video_frame_time(void);
+
+EXPORT double obs_get_active_fps(void);
+EXPORT uint64_t obs_get_average_frame_time_ns(void);
+
+EXPORT uint32_t obs_get_total_frames(void);
+EXPORT uint32_t obs_get_lagged_frames(void);
+
 
 
 /* ------------------------------------------------------------------------- */
 /* ------------------------------------------------------------------------- */
 /* View context */
 /* View context */
@@ -700,14 +708,6 @@ EXPORT obs_source_t *obs_view_get_source(obs_view_t *view,
 /** Renders the sources of this view context */
 /** Renders the sources of this view context */
 EXPORT void obs_view_render(obs_view_t *view);
 EXPORT void obs_view_render(obs_view_t *view);
 
 
-EXPORT uint64_t obs_get_video_frame_time(void);
-
-EXPORT double obs_get_active_fps(void);
-EXPORT uint64_t obs_get_average_frame_time_ns(void);
-
-EXPORT uint32_t obs_get_total_frames(void);
-EXPORT uint32_t obs_get_lagged_frames(void);
-
 
 
 /* ------------------------------------------------------------------------- */
 /* ------------------------------------------------------------------------- */
 /* Display context */
 /* Display context */