Skip to content

Commit

Permalink
cef: Address leftover comments from @vivia
Browse files Browse the repository at this point in the history
  • Loading branch information
amyspark committed Oct 31, 2024
1 parent fd79063 commit 8fb265b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ set(GSTCEF_SRCS
gstcefdemux.cc
gstcefbin.cc
gstcefaudiometa.cc
gstcefloader.cc
)

set(GSTCEFSUBPROCESS_SRCS
Expand Down
4 changes: 2 additions & 2 deletions gstcef.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "gstcefsrc.h"
#include "gstcefdemux.h"
#include "gstcefbin.h"
#ifdef GST_CEF_USE_SANDBOX
#if defined(__APPLE)) && defined(GST_CEF_USE_SANDBOX)
#include "gstcefloader.h"
#endif

Expand All @@ -32,7 +32,7 @@ plugin_init(GstPlugin *plugin)
!gst_element_register (plugin, "cefbin", GST_RANK_NONE, GST_TYPE_CEF_BIN))
return FALSE;

#ifdef GST_CEF_USE_SANDBOX
#if defined(__APPLE)) && defined(GST_CEF_USE_SANDBOX)
return gst_initialize_cef(FALSE);
#else
return TRUE;
Expand Down

0 comments on commit 8fb265b

Please sign in to comment.