diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-04-16 17:41:37 +0200 |
---|---|---|
committer | Dave Robillard <dave@drobilla.net> | 2009-05-03 12:03:15 -0400 |
commit | eb948cae1ef184f5dcac2708032af4ec75175601 (patch) | |
tree | 7af4df1e6960eb4ac991c9a78a9317f3e04e18e3 /gst/deinterlace2/tvtime/tomsmocomp | |
parent | 301f5d19ff662959ed5b7a646f5723fbb68567f2 (diff) | |
download | gst-plugins-bad-eb948cae1ef184f5dcac2708032af4ec75175601.tar.gz gst-plugins-bad-eb948cae1ef184f5dcac2708032af4ec75175601.tar.bz2 gst-plugins-bad-eb948cae1ef184f5dcac2708032af4ec75175601.zip |
deinterlace2: Rename line_length to row_stride and remove output_stride
Diffstat (limited to 'gst/deinterlace2/tvtime/tomsmocomp')
-rw-r--r-- | gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc b/gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc index f014aeb4..89ed39e4 100644 --- a/gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc +++ b/gst/deinterlace2/tvtime/tomsmocomp/TomsMoCompAll.inc @@ -80,8 +80,8 @@ void FUNCT_NAME(GstDeinterlaceMethod *d_method, GstDeinterlace2* object, GstBuff /* double stride do address just every odd/even scanline */ src_pitch = object->field_stride; - dst_pitch = object->output_stride; - rowsize = object->line_length; + dst_pitch = object->row_stride; + rowsize = object->row_stride; FldHeight = object->field_height; pCopySrc = GST_BUFFER_DATA(object->field_history[object->history_count-1].buf); |