diff options
Diffstat (limited to 'src/lib.h')
-rw-r--r-- | src/lib.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -64,6 +64,12 @@ struct _TranscodeClientCtx { TranscodeServerCtx *server_ctx; }; +#ifdef ENCODE_DEBUG +#define stp_print_status(...) g_print(__VA_ARGS__) +#else +#define stp_print_status(...) do {} while (0) +#endif + void stp_cleanup_transcode_server_ctx (TranscodeServerCtx *ctx); void stp_cleanup_transcode_client_ctx (TranscodeClientCtx *ctx); |