mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
video-info: fix GST_VIDEO_INFO_FIELD_HEIGHT() with frame odd height
We want to round up when halfing height. I do have a test for this but it relies on my new video-align tests so it's part of the next commit. Recording the fix separately if we want to backport this fix to the stable branch.
This commit is contained in:
parent
4ed345b7eb
commit
73a628923e
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ GType gst_video_info_get_type (void);
|
|||
*
|
||||
* Since: 1.16.
|
||||
*/
|
||||
#define GST_VIDEO_INFO_FIELD_HEIGHT(i) ((i)->interlace_mode == GST_VIDEO_INTERLACE_MODE_ALTERNATE? (i)->height / 2 : (i)->height)
|
||||
#define GST_VIDEO_INFO_FIELD_HEIGHT(i) ((i)->interlace_mode == GST_VIDEO_INTERLACE_MODE_ALTERNATE? GST_ROUND_UP_2 ((i)->height) / 2 : (i)->height)
|
||||
#define GST_VIDEO_INFO_SIZE(i) ((i)->size)
|
||||
#define GST_VIDEO_INFO_VIEWS(i) ((i)->views)
|
||||
#define GST_VIDEO_INFO_PAR_N(i) ((i)->par_n)
|
||||
|
|
Loading…
Reference in a new issue