blob: 17329e18aad61a4db2d86c5d187c4e742a395b10 [file] [log] [blame]
/*
INTEL CONFIDENTIAL
Copyright 2009 Intel Corporation All Rights Reserved.
The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel’s prior express written permission.
No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing.
*/
/**
* SECTION:mixvideoconfigparamsdec_mp42
* @short_description: VideoConfig parameters
*
* A data object which stores videoconfig specific parameters.
*/
#include "mixvideolog.h"
#include "mixvideoconfigparamsdec_mp42.h"
static GType _mix_videoconfigparamsdec_mp42_type = 0;
static MixVideoConfigParamsDecClass *parent_class = NULL;
#define _do_init { _mix_videoconfigparamsdec_mp42_type = g_define_type_id; }
gboolean mix_videoconfigparamsdec_mp42_copy(MixParams * target,
const MixParams * src);
MixParams *mix_videoconfigparamsdec_mp42_dup(const MixParams * obj);
gboolean
mix_videoconfigparamsdec_mp42_equal(MixParams * first, MixParams * second);
static void mix_videoconfigparamsdec_mp42_finalize(MixParams * obj);
G_DEFINE_TYPE_WITH_CODE (MixVideoConfigParamsDecMP42, /* The name of the new type, in Camel case */
mix_videoconfigparamsdec_mp42, /* The name of the new type in lowercase */
MIX_TYPE_VIDEOCONFIGPARAMSDEC, /* The GType of the parent type */
_do_init);
void _mix_videoconfigparamsdec_mp42_initialize(void) {
/* the MixParams types need to be class_ref'd once before it can be
* done from multiple threads;
* see http://bugzilla.gnome.org/show_bug.cgi?id=304551 */
g_type_class_ref(mix_videoconfigparamsdec_mp42_get_type());
}
static void mix_videoconfigparamsdec_mp42_init(MixVideoConfigParamsDecMP42 * self) {
/* initialize properties here */
/* TODO: initialize properties */
self->mpegversion = 0;
self->divxversion = 0;
self->reserved1 = NULL;
self->reserved2 = NULL;
self->reserved3 = NULL;
self->reserved4 = NULL;
}
static void mix_videoconfigparamsdec_mp42_class_init(
MixVideoConfigParamsDecMP42Class * klass) {
MixVideoConfigParamsDecClass *this_parent_class = MIX_VIDEOCONFIGPARAMSDEC_CLASS(
klass);
MixParamsClass *this_root_class = MIX_PARAMS_CLASS(this_parent_class);
/* setup static parent class */
parent_class
= (MixVideoConfigParamsDecClass *) g_type_class_peek_parent(klass);
this_root_class->finalize = mix_videoconfigparamsdec_mp42_finalize;
this_root_class->copy
= (MixParamsCopyFunction) mix_videoconfigparamsdec_mp42_copy;
this_root_class->dup
= (MixParamsDupFunction) mix_videoconfigparamsdec_mp42_dup;
this_root_class->equal
= (MixParamsEqualFunction) mix_videoconfigparamsdec_mp42_equal;
}
MixVideoConfigParamsDecMP42 *
mix_videoconfigparamsdec_mp42_new(void) {
MixVideoConfigParamsDecMP42 *ret =
(MixVideoConfigParamsDecMP42 *) g_type_create_instance(
MIX_TYPE_VIDEOCONFIGPARAMSDEC_MP42);
return ret;
}
void mix_videoconfigparamsdec_mp42_finalize(MixParams * obj) {
/* MixVideoConfigParamsDecMP42 *this_obj = MIX_VIDEOCONFIGPARAMSDEC_MP42 (obj); */
MixParamsClass *root_class = MIX_PARAMS_CLASS(parent_class);
/* TODO: cleanup resources allocated */
/* Chain up parent */
if (root_class->finalize) {
root_class->finalize(obj);
}
}
MixVideoConfigParamsDecMP42 *
mix_videoconfigparamsdec_mp42_ref(MixVideoConfigParamsDecMP42 * mix) {
return (MixVideoConfigParamsDecMP42 *) mix_params_ref(MIX_PARAMS(mix));
}
/**
* mix_videoconfigparamsdec_mp42_dup:
* @obj: a #MixVideoConfigParamsDec object
* @returns: a newly allocated duplicate of the object.
*
* Copy duplicate of the object.
*/
MixParams *
mix_videoconfigparamsdec_mp42_dup(const MixParams * obj) {
MixParams *ret = NULL;
LOG_V( "Begin\n");
if (MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(obj)) {
MixVideoConfigParamsDecMP42 *duplicate = mix_videoconfigparamsdec_mp42_new();
LOG_V( "duplicate = 0x%x\n", duplicate);
if (mix_videoconfigparamsdec_mp42_copy(MIX_PARAMS(duplicate), MIX_PARAMS(
obj))) {
ret = MIX_PARAMS(duplicate);
} else {
mix_videoconfigparamsdec_mp42_unref(duplicate);
}
}
LOG_V( "End\n");
return ret;
}
/**
* mix_videoconfigparamsdec_mp42_copy:
* @target: copy to target
* @src: copy from src
* @returns: boolean indicates if copy is successful.
*
* Copy instance data from @src to @target.
*/
gboolean mix_videoconfigparamsdec_mp42_copy(MixParams * target,
const MixParams * src) {
MixVideoConfigParamsDecMP42 *this_target, *this_src;
MixParamsClass *root_class;
LOG_V( "Begin\n");
if (MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(target) && MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(
src)) {
// Cast the base object to this child object
this_target = MIX_VIDEOCONFIGPARAMSDEC_MP42(target);
this_src = MIX_VIDEOCONFIGPARAMSDEC_MP42(src);
// TODO: copy properties */
this_target->mpegversion = this_src->mpegversion;
this_target->divxversion = this_src->divxversion;
// Now chainup base class
root_class = MIX_PARAMS_CLASS(parent_class);
if (root_class->copy) {
LOG_V( "root_class->copy != NULL\n");
return root_class->copy(MIX_PARAMS_CAST(target), MIX_PARAMS_CAST(
src));
} else {
LOG_V( "root_class->copy == NULL\n\n");
return TRUE;
}
}
LOG_V( "End\n");
return FALSE;
}
/**
* mix_videoconfigparamsdec_mp42:
* @first: first object to compare
* @second: seond object to compare
* @returns: boolean indicates if instance are equal.
*
* Copy instance data from @src to @target.
*/
gboolean mix_videoconfigparamsdec_mp42_equal(MixParams * first, MixParams * second) {
gboolean ret = FALSE;
MixVideoConfigParamsDecMP42 *this_first, *this_second;
if (MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(first) && MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(
second)) {
// Deep compare
// Cast the base object to this child object
this_first = MIX_VIDEOCONFIGPARAMSDEC_MP42(first);
this_second = MIX_VIDEOCONFIGPARAMSDEC_MP42(second);
/* TODO: add comparison for properties */
{
// members within this scope equal. chaining up.
MixParamsClass *klass = MIX_PARAMS_CLASS(parent_class);
if (klass->equal) {
ret = klass->equal(first, second);
} else {
ret = TRUE;
}
}
}
return ret;
}
/* TODO: Add getters and setters for properties if any */
#define MIX_VIDEOCONFIGPARAMSDEC_MP42_SETTER_CHECK_INPUT(obj) \
if(!obj) return MIX_RESULT_NULL_PTR; \
if(!MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(obj)) return MIX_RESULT_FAIL; \
#define MIX_VIDEOCONFIGPARAMSDEC_MP42_GETTER_CHECK_INPUT(obj, prop) \
if(!obj || !prop) return MIX_RESULT_NULL_PTR; \
if(!MIX_IS_VIDEOCONFIGPARAMSDEC_MP42(obj)) return MIX_RESULT_FAIL; \
MIX_RESULT mix_videoconfigparamsdec_mp42_set_mpegversion(
MixVideoConfigParamsDecMP42 *obj, guint version) {
MIX_VIDEOCONFIGPARAMSDEC_MP42_SETTER_CHECK_INPUT (obj);
obj->mpegversion = version;
return MIX_RESULT_SUCCESS;
}
MIX_RESULT mix_videoconfigparamsdec_mp42_get_mpegversion(
MixVideoConfigParamsDecMP42 *obj, guint *version) {
MIX_VIDEOCONFIGPARAMSDEC_MP42_GETTER_CHECK_INPUT (obj, version);
*version = obj->mpegversion;
return MIX_RESULT_SUCCESS;
}
MIX_RESULT mix_videoconfigparamsdec_mp42_set_divxversion(
MixVideoConfigParamsDecMP42 *obj, guint version) {
MIX_VIDEOCONFIGPARAMSDEC_MP42_SETTER_CHECK_INPUT (obj);
obj->divxversion = version;
return MIX_RESULT_SUCCESS;
}
MIX_RESULT mix_videoconfigparamsdec_mp42_get_divxversion(
MixVideoConfigParamsDecMP42 *obj, guint *version) {
MIX_VIDEOCONFIGPARAMSDEC_MP42_GETTER_CHECK_INPUT (obj, version);
*version = obj->divxversion;
return MIX_RESULT_SUCCESS;
}