mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
Added the previous changes back in
Original commit message from CVS: Added the previous changes back in
This commit is contained in:
parent
fc1645131b
commit
ee33cb2a26
1 changed files with 7 additions and 7 deletions
|
@ -114,7 +114,7 @@ int main(int argc,char *argv[]) {
|
||||||
printf("\n");
|
printf("\n");
|
||||||
|
|
||||||
printf("Pad Templates:\n");
|
printf("Pad Templates:\n");
|
||||||
if (g_list_length (factory->padtemplates) > 0) {
|
if (factory->numpadtemplates) {
|
||||||
pads = factory->padtemplates;
|
pads = factory->padtemplates;
|
||||||
while (pads) {
|
while (pads) {
|
||||||
padtemplate = (GstPadTemplate*)(pads->data);
|
padtemplate = (GstPadTemplate*)(pads->data);
|
||||||
|
@ -215,12 +215,12 @@ int main(int argc,char *argv[]) {
|
||||||
printf(" Has getregionfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->getregionfunc));
|
printf(" Has getregionfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->getregionfunc));
|
||||||
if (pad->qosfunc)
|
if (pad->qosfunc)
|
||||||
printf(" Has qosfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->qosfunc));
|
printf(" Has qosfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->qosfunc));
|
||||||
//if (pad->eosfunc) {
|
if (pad->eosfunc) {
|
||||||
//if (pad->eosfunc == gst_pad_eos_func)
|
if (pad->eosfunc == gst_pad_eos_func)
|
||||||
// printf(" Has default eosfunc() gst_pad_eos_func()\n");
|
printf(" Has default eosfunc() gst_pad_eos_func()\n");
|
||||||
//else
|
else
|
||||||
// printf(" Has eosfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->eosfunc));
|
printf(" Has eosfunc(): %s\n",GST_DEBUG_FUNCPTR_NAME(pad->eosfunc));
|
||||||
//}
|
}
|
||||||
|
|
||||||
if (pad->padtemplate)
|
if (pad->padtemplate)
|
||||||
printf(" Pad Template: '%s'\n",pad->padtemplate->name_template);
|
printf(" Pad Template: '%s'\n",pad->padtemplate->name_template);
|
||||||
|
|
Loading…
Reference in a new issue