2009-06-22 21:25:55 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2009 Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2009-10-04 17:27:56 +00:00
|
|
|
#include <gst/vdpau/gstvdpvideobuffer.h>
|
2009-06-22 21:25:55 +00:00
|
|
|
|
2009-06-30 21:55:13 +00:00
|
|
|
#include "gstvdputils.h"
|
2009-06-23 14:57:45 +00:00
|
|
|
|
2009-10-08 18:13:04 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vdp_yuv_to_output_caps (GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstCaps *result;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
result = gst_caps_copy (caps);
|
|
|
|
for (i = 0; i < gst_caps_get_size (result); i++) {
|
|
|
|
GstStructure *structure = gst_caps_get_structure (result, i);
|
|
|
|
|
|
|
|
gst_structure_set_name (structure, "video/x-vdpau-output");
|
|
|
|
gst_structure_remove_field (structure, "format");
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-06-30 21:55:13 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_vdp_video_to_output_caps (GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstCaps *result;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
result = gst_caps_copy (caps);
|
|
|
|
for (i = 0; i < gst_caps_get_size (result); i++) {
|
|
|
|
GstStructure *structure = gst_caps_get_structure (result, i);
|
2009-08-19 22:16:02 +00:00
|
|
|
gint par_n, par_d;
|
2009-06-30 21:55:13 +00:00
|
|
|
|
|
|
|
gst_structure_set_name (structure, "video/x-vdpau-output");
|
|
|
|
gst_structure_remove_field (structure, "chroma-type");
|
2009-08-19 20:52:34 +00:00
|
|
|
|
2009-08-19 22:16:02 +00:00
|
|
|
if (gst_structure_get_fraction (structure, "pixel-aspect-ratio", &par_n,
|
|
|
|
&par_d)) {
|
|
|
|
gint width;
|
|
|
|
|
|
|
|
gst_structure_get_int (structure, "width", &width);
|
|
|
|
width = gst_util_uint64_scale_int (width, par_n, par_d);
|
|
|
|
gst_structure_set (structure, "width", G_TYPE_INT, width, NULL);
|
|
|
|
|
|
|
|
gst_structure_remove_field (structure, "pixel-aspect-ratio");
|
|
|
|
}
|
2009-06-30 21:55:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|