diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-06-17 22:36:43 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-06-17 22:36:43 +0000 |
commit | fccaa92c14cdcc86a8a28e1995d28914efa370f7 (patch) | |
tree | a12e9240002e60c70968284e9a191991be4c7042 /src/xine-engine/post.c | |
parent | 177772b4cec0994b403f8ce614033ffe7b4883f7 (diff) | |
download | xine-lib-fccaa92c14cdcc86a8a28e1995d28914efa370f7.tar.gz xine-lib-fccaa92c14cdcc86a8a28e1995d28914efa370f7.tar.bz2 |
** BUGFIX **
Copy frame crop values when copying frame information. (Reinhard Nissl)
CVS patchset: 7629
CVS date: 2005/06/17 22:36:43
Diffstat (limited to 'src/xine-engine/post.c')
-rw-r--r-- | src/xine-engine/post.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c index 4b2da8afc..62eb31a78 100644 --- a/src/xine-engine/post.c +++ b/src/xine-engine/post.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: post.c,v 1.29 2005/05/07 09:11:39 valtri Exp $ + * $Id: post.c,v 1.30 2005/06/17 22:36:48 dsalt Exp $ */ /* @@ -420,7 +420,11 @@ void _x_post_frame_copy_down(vo_frame_t *from, vo_frame_t *to) { to->drawn = from->drawn; to->accel_data = from->accel_data; to->stream = from->stream; - + to->crop_left = from->crop_left; + to->crop_right = from->crop_right; + to->crop_top = from->crop_top; + to->crop_bottom = from->crop_bottom; + if (to->extra_info != from->extra_info) _x_extra_info_merge(to->extra_info, from->extra_info); } |