diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2005-07-17 20:22:24 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2005-07-17 20:22:24 +0000 |
commit | 50b8a6ab6ef70b46c08756c3072f4604ee3e2714 (patch) | |
tree | 161621294ef8a9689e7bf379c9ea71350d20c3e1 /src | |
parent | aff40b703b2e1b156032cb2c25db839b76712816 (diff) | |
download | xine-lib-50b8a6ab6ef70b46c08756c3072f4604ee3e2714.tar.gz xine-lib-50b8a6ab6ef70b46c08756c3072f4604ee3e2714.tar.bz2 |
Copy frame ratio as well
CVS patchset: 7652
CVS date: 2005/07/17 20:22:24
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/post.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c index 62eb31a78..93737d714 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.30 2005/06/17 22:36:48 dsalt Exp $ + * $Id: post.c,v 1.31 2005/07/17 20:22:24 jstembridge Exp $ */ /* @@ -424,6 +424,7 @@ void _x_post_frame_copy_down(vo_frame_t *from, vo_frame_t *to) { to->crop_right = from->crop_right; to->crop_top = from->crop_top; to->crop_bottom = from->crop_bottom; + to->ratio = from->ratio; if (to->extra_info != from->extra_info) _x_extra_info_merge(to->extra_info, from->extra_info); |