mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
va: filter: fix assignation to proper variable
Fix the result of a wrong copy&paste Fixes: #1501 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1976>
This commit is contained in:
parent
1f7681c385
commit
8a8688c639
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ gst_va_filter_init (GstVaFilter * self)
|
||||||
self->min_height = 1;
|
self->min_height = 1;
|
||||||
self->max_height = G_MAXINT;
|
self->max_height = G_MAXINT;
|
||||||
self->min_width = 1;
|
self->min_width = 1;
|
||||||
self->max_height = G_MAXINT;
|
self->max_width = G_MAXINT;
|
||||||
}
|
}
|
||||||
|
|
||||||
GstVaFilter *
|
GstVaFilter *
|
||||||
|
|
Loading…
Reference in a new issue