summaryrefslogtreecommitdiff
path: root/src/debug
diff options
context:
space:
mode:
Diffstat (limited to 'src/debug')
-rw-r--r--src/debug/local-play.c12
-rw-r--r--src/debug/local-play.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/debug/local-play.c b/src/debug/local-play.c
index 8dbb90d..4302c2f 100644
--- a/src/debug/local-play.c
+++ b/src/debug/local-play.c
@@ -23,8 +23,8 @@
#include "local-play.h"
static void
-pad_has_video_caps (TranscodeServerCtx *ctx,
- GstPad *decodebin_pad)
+pad_has_video_caps (STPServerCtx *ctx,
+ GstPad *decodebin_pad)
{
GstPad *sink_pad;
GstElement *bin;
@@ -60,8 +60,8 @@ out:
}
static void
-pad_has_audio_caps (TranscodeServerCtx *ctx,
- GstPad *decodebin_pad)
+pad_has_audio_caps (STPServerCtx *ctx,
+ GstPad *decodebin_pad)
{
GstPad *sink_pad;
GstElement *bin;
@@ -116,7 +116,7 @@ decodebin_pad_added (GstElement *decodebin,
{
GstCaps *pad_caps;
GstStructure *structure;
- TranscodeServerCtx *ctx = user_data;
+ STPServerCtx *ctx = user_data;
if (!gst_pad_has_current_caps (src_pad)) {
g_critical ("Decodebin pad doesn't have current caps");
@@ -140,7 +140,7 @@ decodebin_pad_added (GstElement *decodebin,
}
void
-stp_play_from_msg (TranscodeServerCtx *ctx)
+stp_play_from_msg (STPServerCtx *ctx)
{
GstBus *bus;
GstElement *src, *decodebin;
diff --git a/src/debug/local-play.h b/src/debug/local-play.h
index 131a2af..eb8c283 100644
--- a/src/debug/local-play.h
+++ b/src/debug/local-play.h
@@ -25,6 +25,6 @@
#include "../lib.h"
-void stp_play_from_msg (TranscodeServerCtx *ctx);
+void stp_play_from_msg (STPServerCtx *ctx);
#endif /* _SST_LOCAL_PLAY */