libobs: Move function declarations to correct spot

These function declarations were in the wrong section.
This commit is contained in:
jp9000 2018-08-10 02:45:28 -07:00
parent c7a2a674bc
commit c43702e335

View file

@ -674,6 +674,14 @@ EXPORT void obs_remove_raw_video_callback(
void (*callback)(void *param, struct video_data *frame),
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 */
@ -700,14 +708,6 @@ EXPORT obs_source_t *obs_view_get_source(obs_view_t *view,
/** Renders the sources of this view context */
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 */