• Home
  • Raw
  • Download

Lines Matching refs:encoder

15 static gboolean gst_replace_open (GstVideoEncoder *encoder);
16 static gboolean gst_replace_close (GstVideoEncoder *encoder);
17 static gboolean gst_replace_start (GstVideoEncoder *encoder);
18 static gboolean gst_replace_stop (GstVideoEncoder *encoder);
19 static gboolean gst_replace_set_format (GstVideoEncoder *encoder, GstVideoCodecState *state);
20 static GstFlowReturn gst_replace_handle_frame (GstVideoEncoder *encoder, GstVideoCodecFrame *frame);
21 static gboolean gst_replace_reset (GstVideoEncoder *encoder, gboolean hard);
22 static GstFlowReturn gst_replace_finish (GstVideoEncoder *encoder);
23 static GstFlowReturn gst_replace_pre_push (GstVideoEncoder *encoder, GstVideoCodecFrame *frame);
24 static GstCaps * gst_replace_getcaps (GstVideoEncoder *encoder, GstCaps *filter);
25 static gboolean gst_replace_sink_event (GstVideoEncoder *encoder, GstEvent *event);
26 static gboolean gst_replace_src_event (GstVideoEncoder *encoder, GstEvent *event);
27 static gboolean gst_replace_negotiate (GstVideoEncoder *encoder);
28 static gboolean gst_replace_decide_allocation (GstVideoEncoder *encoder, GstQuery *query);
29 static gboolean gst_replace_propose_allocation (GstVideoEncoder * encoder, GstQuery * query);
49 static gboolean gst_replace_open (GstVideoEncoder *encoder)
51 GstReplace *replace = GST_REPLACE (encoder);
58 static gboolean gst_replace_close (GstVideoEncoder *encoder)
60 GstReplace *replace = GST_REPLACE (encoder);
67 static gboolean gst_replace_start (GstVideoEncoder *encoder)
69 GstReplace *replace = GST_REPLACE (encoder);
76 static gboolean gst_replace_stop (GstVideoEncoder *encoder)
78 GstReplace *replace = GST_REPLACE (encoder);
85 static gboolean gst_replace_set_format (GstVideoEncoder *encoder, GstVideoCodecState *state)
87 GstReplace *replace = GST_REPLACE (encoder);
94 static GstFlowReturn gst_replace_handle_frame (GstVideoEncoder *encoder, GstVideoCodecFrame *frame)
96 GstReplace *replace = GST_REPLACE (encoder);
103 static gboolean gst_replace_reset (GstVideoEncoder *encoder, gboolean hard)
105 GstReplace *replace = GST_REPLACE (encoder);
112 static GstFlowReturn gst_replace_finish (GstVideoEncoder *encoder)
114 GstReplace *replace = GST_REPLACE (encoder);
121 static GstFlowReturn gst_replace_pre_push (GstVideoEncoder *encoder, GstVideoCodecFrame *frame)
123 GstReplace *replace = GST_REPLACE (encoder);
130 static GstCaps * gst_replace_getcaps (GstVideoEncoder *encoder, GstCaps *filter)
132 GstReplace *replace = GST_REPLACE (encoder);
139 static gboolean gst_replace_sink_event (GstVideoEncoder *encoder, GstEvent *event)
141 GstReplace *replace = GST_REPLACE (encoder);
148 static gboolean gst_replace_src_event (GstVideoEncoder *encoder, GstEvent *event)
150 GstReplace *replace = GST_REPLACE (encoder);
157 static gboolean gst_replace_negotiate (GstVideoEncoder *encoder)
159 GstReplace *replace = GST_REPLACE (encoder);
166 static gboolean gst_replace_decide_allocation (GstVideoEncoder *encoder, GstQuery *query)
168 GstReplace *replace = GST_REPLACE (encoder);
175 static gboolean gst_replace_propose_allocation (GstVideoEncoder * encoder, GstQuery * query)
177 GstReplace *replace = GST_REPLACE (encoder);