diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-04-16 17:41:37 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2009-04-16 17:42:27 +0200 |
commit | a32e180155f2d60f939432950f316558eee62796 (patch) | |
tree | 32e67a7b55b73b6738a19c25fb930063a17d9629 /gst/deinterlace2/tvtime/tomsmocomp | |
parent | ffaef58b597dba7a256efe1c6cde5344cee4a6a8 (diff) | |
download | gst-plugins-bad-a32e180155f2d60f939432950f316558eee62796.tar.gz gst-plugins-bad-a32e180155f2d60f939432950f316558eee62796.tar.bz2 gst-plugins-bad-a32e180155f2d60f939432950f316558eee62796.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); |