Home
last modified time | relevance | path

Searched refs:pre_push (Results 1 – 15 of 15) sorted by relevance

/third_party/gstreamer/gstplugins_bad/tools/element-templates/
Daudiodecoder43 audio_decoder_class->pre_push = GST_DEBUG_FUNCPTR (gst_replace_pre_push);
117 GST_DEBUG_OBJECT (replace, "pre_push");
Daudioencoder42 audio_encoder_class->pre_push = GST_DEBUG_FUNCPTR (gst_replace_pre_push);
106 GST_DEBUG_OBJECT (replace, "pre_push");
Dvideoencoder41 video_encoder_class->pre_push = GST_DEBUG_FUNCPTR (gst_replace_pre_push);
125 GST_DEBUG_OBJECT(replace, "pre_push");
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dgstvideoencoder.h268 GstFlowReturn (*pre_push) (GstVideoEncoder *encoder, member
Dgstvideoencoder.c2312 if (encoder_class->pre_push) in gst_video_encoder_finish_frame()
2313 ret = encoder_class->pre_push (encoder, frame); in gst_video_encoder_finish_frame()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudioencoder.h214 GstFlowReturn (*pre_push) (GstAudioEncoder *enc, member
Dgstaudiodecoder.h284 GstFlowReturn (*pre_push) (GstAudioDecoder *dec, member
Dgstaudioencoder.c980 if (klass->pre_push) { in gst_audio_encoder_finish_frame()
982 ret = klass->pre_push (enc, &buf); in gst_audio_encoder_finish_frame()
Dgstaudiodecoder.c998 if (klass->pre_push) { in gst_audio_decoder_push_forward()
1000 ret = klass->pre_push (dec, &buf); in gst_audio_decoder_push_forward()
/third_party/gstreamer/gstplugins_good/ext/vpx/
Dgstvp8enc.c155 video_encoder_class->pre_push = gst_vp8_enc_pre_push; in gst_vp8_enc_class_init()
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkh264enc.c499 videoencoder_class->pre_push = gst_msdkh264enc_pre_push; in gst_msdkh264enc_class_init()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dvideoencoder.c148 videoencoder_class->pre_push = gst_video_encoder_tester_pre_push; in gst_video_encoder_tester_class_init()
/third_party/gstreamer/gstplugins_base/ext/theora/
Dgsttheoraenc.c231 gstvideo_encoder_class->pre_push = GST_DEBUG_FUNCPTR (theora_enc_pre_push); in gst_theora_enc_class_init()
/third_party/gstreamer/gstplugins_base/
DChangeLog39366 videoencoder: Fix leak when pre_push does not return OK
73418 This makes the hack in vorbisenc and probably others in ::pre_push()
85262 Also modify and elaborate a bit on pre_push (though currently unused to no harm).
/third_party/gstreamer/gstplugins_good/
DChangeLog45349 but has to be done in pre_push instead of handle_frame as 1.0 does