mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Use GST_ELEMENT_DETAILS macro to initialise the structure
Original commit message from CVS: Use GST_ELEMENT_DETAILS macro to initialise the structure
This commit is contained in:
parent
8cf2398535
commit
98b609758d
1 changed files with 2 additions and 2 deletions
|
@ -27,12 +27,12 @@
|
||||||
#include "gstdeinterlace.h"
|
#include "gstdeinterlace.h"
|
||||||
|
|
||||||
/* elementfactory information */
|
/* elementfactory information */
|
||||||
static GstElementDetails deinterlace_details = {
|
static GstElementDetails deinterlace_details = GST_ELEMENT_DETAILS (
|
||||||
"Deinterlace",
|
"Deinterlace",
|
||||||
"Filter/Video",
|
"Filter/Video",
|
||||||
"Deinterlace video",
|
"Deinterlace video",
|
||||||
"Wim Taymans <wim.taymans@chello.be>"
|
"Wim Taymans <wim.taymans@chello.be>"
|
||||||
};
|
);
|
||||||
|
|
||||||
|
|
||||||
/* Filter signals and args */
|
/* Filter signals and args */
|
||||||
|
|
Loading…
Reference in a new issue