MPEG-2 encoding path
[profile/ivi/vaapi-intel-driver.git] / src / intel_media_common.c
1 /*
2  * Copyright (C) 2006-2012 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <assert.h>
28
29 #include "intel_driver.h"
30 #include "intel_media.h"
31
32 static pthread_mutex_t free_avc_surface_lock = PTHREAD_MUTEX_INITIALIZER;
33
34 void 
35 gen_free_avc_surface(void **data)
36 {
37     GenAvcSurface *avc_surface;
38
39     pthread_mutex_lock(&free_avc_surface_lock);
40
41     avc_surface = *data;
42
43     if (!avc_surface) {
44         pthread_mutex_unlock(&free_avc_surface_lock);
45         return;
46     }
47
48
49     dri_bo_unreference(avc_surface->dmv_top);
50     avc_surface->dmv_top = NULL;
51     dri_bo_unreference(avc_surface->dmv_bottom);
52     avc_surface->dmv_bottom = NULL;
53
54     free(avc_surface);
55     *data = NULL;
56
57     pthread_mutex_unlock(&free_avc_surface_lock);
58 }
59
60 /* This is to convert one float to the given format interger.
61  * For example: 1.25 to S1.6 or U2.6 and so on
62  */
63 int intel_format_convert(float src, int out_int_bits, int out_frac_bits,int out_sign_flag)
64 {
65      unsigned char negative_flag = (src < 0.0) ? 1 : 0;
66      float src_1 = (!negative_flag)? src: -src ;
67      unsigned int factor = 1 << out_frac_bits;
68      int output_value = 0;         
69  
70      unsigned int integer_part  = floor(src_1);
71      unsigned int fraction_part = ((int)((src_1 - integer_part) * factor)) & (factor - 1) ;
72
73      output_value = (integer_part << out_frac_bits) | fraction_part;
74
75      if(negative_flag)
76          output_value = (~output_value + 1) & ((1 <<(out_int_bits + out_frac_bits)) -1);
77
78      if(out_sign_flag == 1 && negative_flag)
79      {
80           output_value |= negative_flag <<(out_int_bits + out_frac_bits);
81      }
82      return output_value;
83 }