| /* GStreamer |
| * Copyright (C) 2010 David Schleef <ds@schleef.org> |
| * Copyright (C) 2010 Sebastian Dröge <sebastian.droege@collabora.co.uk> |
| * |
| * 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., 51 Franklin St, Fifth Floor, |
| * Boston, MA 02110-1301, USA. |
| */ |
| |
| #ifdef HAVE_CONFIG_H |
| #include "config.h" |
| #endif |
| |
| #if 0 |
| #ifdef HAVE_PTHREAD |
| #define _GNU_SOURCE |
| #include <pthread.h> |
| #endif |
| #endif |
| |
| #include "video-converter.h" |
| |
| #include <glib.h> |
| #include <string.h> |
| #include <math.h> |
| |
| #include "video-orc.h" |
| |
| /** |
| * SECTION:videoconverter |
| * @title: GstVideoConverter |
| * @short_description: Generic video conversion |
| * |
| * This object is used to convert video frames from one format to another. |
| * The object can perform conversion of: |
| * |
| * * video format |
| * * video colorspace |
| * * chroma-siting |
| * * video size |
| * |
| */ |
| |
| /* |
| * (a) unpack |
| * (b) chroma upsample |
| * (c) (convert Y'CbCr to R'G'B') |
| * (d) gamma decode |
| * (e) downscale |
| * (f) colorspace convert through XYZ |
| * (g) upscale |
| * (h) gamma encode |
| * (i) (convert R'G'B' to Y'CbCr) |
| * (j) chroma downsample |
| * (k) pack |
| * |
| * quality options |
| * |
| * (a) range truncate, range expand |
| * (b) full upsample, 1-1 non-cosited upsample, no upsample |
| * (c) 8 bits, 16 bits |
| * (d) |
| * (e) 8 bits, 16 bits |
| * (f) 8 bits, 16 bits |
| * (g) 8 bits, 16 bits |
| * (h) |
| * (i) 8 bits, 16 bits |
| * (j) 1-1 cosited downsample, no downsample |
| * (k) |
| * |
| * |
| * 1 : a -> -> -> -> e -> f -> g -> -> -> -> k |
| * 2 : a -> -> -> -> e -> f* -> g -> -> -> -> k |
| * 3 : a -> -> -> -> e* -> f* -> g* -> -> -> -> k |
| * 4 : a -> b -> -> -> e -> f -> g -> -> -> j -> k |
| * 5 : a -> b -> -> -> e* -> f* -> g* -> -> -> j -> k |
| * 6 : a -> b -> c -> d -> e -> f -> g -> h -> i -> j -> k |
| * 7 : a -> b -> c -> d -> e* -> f* -> g* -> h -> i -> j -> k |
| * |
| * 8 : a -> b -> c -> d -> e* -> f* -> g* -> h -> i -> j -> k |
| * 9 : a -> b -> c -> d -> e* -> f* -> g* -> h -> i -> j -> k |
| * 10 : a -> b -> c -> d -> e* -> f* -> g* -> h -> i -> j -> k |
| */ |
| |
| #ifndef GST_DISABLE_GST_DEBUG |
| #define GST_CAT_DEFAULT ensure_debug_category() |
| static GstDebugCategory * |
| ensure_debug_category (void) |
| { |
| static gsize cat_gonce = 0; |
| |
| if (g_once_init_enter (&cat_gonce)) { |
| gsize cat_done; |
| |
| cat_done = (gsize) _gst_debug_category_new ("video-converter", 0, |
| "video-converter object"); |
| |
| g_once_init_leave (&cat_gonce, cat_done); |
| } |
| |
| return (GstDebugCategory *) cat_gonce; |
| } |
| #else |
| #define ensure_debug_category() /* NOOP */ |
| #endif /* GST_DISABLE_GST_DEBUG */ |
| |
| typedef void (*GstParallelizedTaskFunc) (gpointer user_data); |
| |
| typedef struct _GstParallelizedTaskRunner GstParallelizedTaskRunner; |
| typedef struct _GstParallelizedTaskThread GstParallelizedTaskThread; |
| |
| struct _GstParallelizedTaskThread |
| { |
| GstParallelizedTaskRunner *runner; |
| guint idx; |
| GThread *thread; |
| }; |
| |
| struct _GstParallelizedTaskRunner |
| { |
| guint n_threads; |
| |
| GstParallelizedTaskThread *threads; |
| |
| GstParallelizedTaskFunc func; |
| gpointer *task_data; |
| |
| GMutex lock; |
| GCond cond_todo, cond_done; |
| gint n_todo, n_done; |
| gboolean quit; |
| }; |
| |
| static gpointer |
| gst_parallelized_task_thread_func (gpointer data) |
| { |
| GstParallelizedTaskThread *self = data; |
| |
| #if 0 |
| #ifdef HAVE_PTHREAD |
| { |
| pthread_t thread = pthread_self (); |
| cpu_set_t cpuset; |
| int r; |
| |
| CPU_ZERO (&cpuset); |
| CPU_SET (self->idx, &cpuset); |
| if ((r = pthread_setaffinity_np (thread, sizeof (cpuset), &cpuset)) != 0) |
| GST_ERROR ("Failed to set thread affinity for thread %d: %s", self->idx, |
| g_strerror (r)); |
| } |
| #endif |
| #endif |
| |
| g_mutex_lock (&self->runner->lock); |
| self->runner->n_done++; |
| if (self->runner->n_done == self->runner->n_threads - 1) |
| g_cond_signal (&self->runner->cond_done); |
| |
| do { |
| gint idx; |
| |
| while (self->runner->n_todo == -1 && !self->runner->quit) |
| g_cond_wait (&self->runner->cond_todo, &self->runner->lock); |
| |
| if (self->runner->quit) |
| break; |
| |
| idx = self->runner->n_todo--; |
| g_assert (self->runner->n_todo >= -1); |
| g_mutex_unlock (&self->runner->lock); |
| |
| g_assert (self->runner->func != NULL); |
| |
| self->runner->func (self->runner->task_data[idx]); |
| |
| g_mutex_lock (&self->runner->lock); |
| self->runner->n_done++; |
| if (self->runner->n_done == self->runner->n_threads - 1) |
| g_cond_signal (&self->runner->cond_done); |
| } while (TRUE); |
| |
| g_mutex_unlock (&self->runner->lock); |
| |
| return NULL; |
| } |
| |
| static void |
| gst_parallelized_task_runner_free (GstParallelizedTaskRunner * self) |
| { |
| guint i; |
| |
| g_mutex_lock (&self->lock); |
| self->quit = TRUE; |
| g_cond_broadcast (&self->cond_todo); |
| g_mutex_unlock (&self->lock); |
| |
| for (i = 1; i < self->n_threads; i++) { |
| if (!self->threads[i].thread) |
| continue; |
| |
| g_thread_join (self->threads[i].thread); |
| } |
| |
| g_mutex_clear (&self->lock); |
| g_cond_clear (&self->cond_todo); |
| g_cond_clear (&self->cond_done); |
| g_free (self->threads); |
| g_free (self); |
| } |
| |
| static GstParallelizedTaskRunner * |
| gst_parallelized_task_runner_new (guint n_threads) |
| { |
| GstParallelizedTaskRunner *self; |
| guint i; |
| GError *err = NULL; |
| |
| if (n_threads == 0) |
| n_threads = g_get_num_processors (); |
| |
| self = g_new0 (GstParallelizedTaskRunner, 1); |
| self->n_threads = n_threads; |
| self->threads = g_new0 (GstParallelizedTaskThread, n_threads); |
| |
| self->quit = FALSE; |
| self->n_todo = -1; |
| self->n_done = 0; |
| g_mutex_init (&self->lock); |
| g_cond_init (&self->cond_todo); |
| g_cond_init (&self->cond_done); |
| |
| /* Set when scheduling a job */ |
| self->func = NULL; |
| self->task_data = NULL; |
| |
| for (i = 0; i < n_threads; i++) { |
| self->threads[i].runner = self; |
| self->threads[i].idx = i; |
| |
| /* First thread is the one calling run() */ |
| if (i > 0) { |
| self->threads[i].thread = |
| g_thread_try_new ("videoconvert", gst_parallelized_task_thread_func, |
| &self->threads[i], &err); |
| if (!self->threads[i].thread) |
| goto error; |
| } |
| } |
| |
| g_mutex_lock (&self->lock); |
| while (self->n_done < self->n_threads - 1) |
| g_cond_wait (&self->cond_done, &self->lock); |
| self->n_done = 0; |
| g_mutex_unlock (&self->lock); |
| |
| return self; |
| |
| error: |
| { |
| GST_ERROR ("Failed to start thread %u: %s", i, err->message); |
| g_clear_error (&err); |
| |
| gst_parallelized_task_runner_free (self); |
| return NULL; |
| } |
| } |
| |
| static void |
| gst_parallelized_task_runner_run (GstParallelizedTaskRunner * self, |
| GstParallelizedTaskFunc func, gpointer * task_data) |
| { |
| guint n_threads = self->n_threads; |
| |
| self->func = func; |
| self->task_data = task_data; |
| |
| if (n_threads > 1) { |
| g_mutex_lock (&self->lock); |
| self->n_todo = self->n_threads - 2; |
| self->n_done = 0; |
| g_cond_broadcast (&self->cond_todo); |
| g_mutex_unlock (&self->lock); |
| } |
| |
| self->func (self->task_data[self->n_threads - 1]); |
| |
| if (n_threads > 1) { |
| g_mutex_lock (&self->lock); |
| while (self->n_done < self->n_threads - 1) |
| g_cond_wait (&self->cond_done, &self->lock); |
| self->n_done = 0; |
| g_mutex_unlock (&self->lock); |
| } |
| |
| self->func = NULL; |
| self->task_data = NULL; |
| } |
| |
| typedef struct _GstLineCache GstLineCache; |
| |
| #define SCALE (8) |
| #define SCALE_F ((float) (1 << SCALE)) |
| |
| typedef struct _MatrixData MatrixData; |
| |
| struct _MatrixData |
| { |
| gdouble dm[4][4]; |
| gint im[4][4]; |
| gint width; |
| guint64 orc_p1; |
| guint64 orc_p2; |
| guint64 orc_p3; |
| guint64 orc_p4; |
| gint64 *t_r; |
| gint64 *t_g; |
| gint64 *t_b; |
| gint64 t_c; |
| void (*matrix_func) (MatrixData * data, gpointer pixels); |
| }; |
| |
| typedef struct _GammaData GammaData; |
| |
| struct _GammaData |
| { |
| gpointer gamma_table; |
| gint width; |
| void (*gamma_func) (GammaData * data, gpointer dest, gpointer src); |
| }; |
| |
| typedef enum |
| { |
| ALPHA_MODE_NONE = 0, |
| ALPHA_MODE_COPY = (1 << 0), |
| ALPHA_MODE_SET = (1 << 1), |
| ALPHA_MODE_MULT = (1 << 2) |
| } AlphaMode; |
| |
| typedef struct |
| { |
| guint8 *data; |
| guint stride; |
| guint n_lines; |
| guint idx; |
| gpointer user_data; |
| GDestroyNotify notify; |
| } ConverterAlloc; |
| |
| typedef void (*FastConvertFunc) (GstVideoConverter * convert, |
| const GstVideoFrame * src, GstVideoFrame * dest, gint plane); |
| |
| struct _GstVideoConverter |
| { |
| gint flags; |
| |
| GstVideoInfo in_info; |
| GstVideoInfo out_info; |
| |
| gint in_x; |
| gint in_y; |
| gint in_width; |
| gint in_height; |
| gint in_maxwidth; |
| gint in_maxheight; |
| gint out_x; |
| gint out_y; |
| gint out_width; |
| gint out_height; |
| gint out_maxwidth; |
| gint out_maxheight; |
| |
| gint current_pstride; |
| gint current_width; |
| gint current_height; |
| GstVideoFormat current_format; |
| gint current_bits; |
| |
| GstStructure *config; |
| |
| GstParallelizedTaskRunner *conversion_runner; |
| |
| guint16 **tmpline; |
| |
| gboolean fill_border; |
| gpointer borderline; |
| guint64 borders[4]; |
| guint32 border_argb; |
| guint32 alpha_value; |
| AlphaMode alpha_mode; |
| |
| void (*convert) (GstVideoConverter * convert, const GstVideoFrame * src, |
| GstVideoFrame * dest); |
| |
| /* data for unpack */ |
| GstLineCache **unpack_lines; |
| GstVideoFormat unpack_format; |
| guint unpack_bits; |
| gboolean unpack_rgb; |
| gboolean identity_unpack; |
| gint unpack_pstride; |
| |
| /* chroma upsample */ |
| GstLineCache **upsample_lines; |
| GstVideoChromaResample **upsample; |
| GstVideoChromaResample **upsample_p; |
| GstVideoChromaResample **upsample_i; |
| guint up_n_lines; |
| gint up_offset; |
| |
| /* to R'G'B */ |
| GstLineCache **to_RGB_lines; |
| MatrixData to_RGB_matrix; |
| /* gamma decode */ |
| GammaData gamma_dec; |
| |
| /* scaling */ |
| GstLineCache **hscale_lines; |
| GstVideoScaler **h_scaler; |
| gint h_scale_format; |
| GstLineCache **vscale_lines; |
| GstVideoScaler **v_scaler; |
| GstVideoScaler **v_scaler_p; |
| GstVideoScaler **v_scaler_i; |
| gint v_scale_width; |
| gint v_scale_format; |
| |
| /* color space conversion */ |
| GstLineCache **convert_lines; |
| MatrixData convert_matrix; |
| gint in_bits; |
| gint out_bits; |
| |
| /* alpha correction */ |
| GstLineCache **alpha_lines; |
| void (*alpha_func) (GstVideoConverter * convert, gpointer pixels, gint width); |
| |
| /* gamma encode */ |
| GammaData gamma_enc; |
| /* to Y'CbCr */ |
| GstLineCache **to_YUV_lines; |
| MatrixData to_YUV_matrix; |
| |
| /* chroma downsample */ |
| GstLineCache **downsample_lines; |
| GstVideoChromaResample **downsample; |
| GstVideoChromaResample **downsample_p; |
| GstVideoChromaResample **downsample_i; |
| guint down_n_lines; |
| gint down_offset; |
| |
| /* dither */ |
| GstLineCache **dither_lines; |
| GstVideoDither **dither; |
| |
| /* pack */ |
| GstLineCache **pack_lines; |
| guint pack_nlines; |
| GstVideoFormat pack_format; |
| guint pack_bits; |
| gboolean pack_rgb; |
| gboolean identity_pack; |
| gint pack_pstride; |
| gconstpointer pack_pal; |
| gsize pack_palsize; |
| |
| const GstVideoFrame *src; |
| GstVideoFrame *dest; |
| |
| /* fastpath */ |
| GstVideoFormat fformat[4]; |
| gint fin_x[4]; |
| gint fin_y[4]; |
| gint fout_x[4]; |
| gint fout_y[4]; |
| gint fout_width[4]; |
| gint fout_height[4]; |
| gint fsplane[4]; |
| gint ffill[4]; |
| |
| struct |
| { |
| GstVideoScaler **scaler; |
| } fh_scaler[4]; |
| struct |
| { |
| GstVideoScaler **scaler; |
| } fv_scaler[4]; |
| FastConvertFunc fconvert[4]; |
| }; |
| |
| typedef gpointer (*GstLineCacheAllocLineFunc) (GstLineCache * cache, gint idx, |
| gpointer user_data); |
| typedef gboolean (*GstLineCacheNeedLineFunc) (GstLineCache * cache, gint idx, |
| gint out_line, gint in_line, gpointer user_data); |
| |
| struct _GstLineCache |
| { |
| gint first; |
| gint backlog; |
| GPtrArray *lines; |
| |
| GstLineCache *prev; |
| gboolean write_input; |
| gboolean pass_alloc; |
| gboolean alloc_writable; |
| |
| GstLineCacheNeedLineFunc need_line; |
| gint need_line_idx; |
| gpointer need_line_data; |
| GDestroyNotify need_line_notify; |
| |
| guint n_lines; |
| guint stride; |
| GstLineCacheAllocLineFunc alloc_line; |
| gpointer alloc_line_data; |
| GDestroyNotify alloc_line_notify; |
| }; |
| |
| static GstLineCache * |
| gst_line_cache_new (GstLineCache * prev) |
| { |
| GstLineCache *result; |
| |
| result = g_slice_new0 (GstLineCache); |
| result->lines = g_ptr_array_new (); |
| result->prev = prev; |
| |
| return result; |
| } |
| |
| static void |
| gst_line_cache_clear (GstLineCache * cache) |
| { |
| g_return_if_fail (cache != NULL); |
| |
| g_ptr_array_set_size (cache->lines, 0); |
| cache->first = 0; |
| } |
| |
| static void |
| gst_line_cache_free (GstLineCache * cache) |
| { |
| if (cache->need_line_notify) |
| cache->need_line_notify (cache->need_line_data); |
| if (cache->alloc_line_notify) |
| cache->alloc_line_notify (cache->alloc_line_data); |
| gst_line_cache_clear (cache); |
| g_ptr_array_unref (cache->lines); |
| g_slice_free (GstLineCache, cache); |
| } |
| |
| static void |
| gst_line_cache_set_need_line_func (GstLineCache * cache, |
| GstLineCacheNeedLineFunc need_line, gint idx, gpointer user_data, |
| GDestroyNotify notify) |
| { |
| cache->need_line = need_line; |
| cache->need_line_idx = idx; |
| cache->need_line_data = user_data; |
| cache->need_line_notify = notify; |
| } |
| |
| static void |
| gst_line_cache_set_alloc_line_func (GstLineCache * cache, |
| GstLineCacheAllocLineFunc alloc_line, gpointer user_data, |
| GDestroyNotify notify) |
| { |
| cache->alloc_line = alloc_line; |
| cache->alloc_line_data = user_data; |
| cache->alloc_line_notify = notify; |
| } |
| |
| /* keep this much backlog for interlaced video */ |
| #define BACKLOG 2 |
| |
| static gpointer * |
| gst_line_cache_get_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gint n_lines) |
| { |
| if (cache->first + cache->backlog < in_line) { |
| gint to_remove = |
| MIN (in_line - (cache->first + cache->backlog), cache->lines->len); |
| if (to_remove > 0) { |
| g_ptr_array_remove_range (cache->lines, 0, to_remove); |
| } |
| cache->first += to_remove; |
| } else if (in_line < cache->first) { |
| gst_line_cache_clear (cache); |
| cache->first = in_line; |
| } |
| |
| while (TRUE) { |
| gint oline; |
| |
| if (cache->first <= in_line |
| && in_line + n_lines <= cache->first + (gint) cache->lines->len) { |
| return cache->lines->pdata + (in_line - cache->first); |
| } |
| |
| if (cache->need_line == NULL) |
| break; |
| |
| oline = out_line + cache->first + cache->lines->len - in_line; |
| |
| if (!cache->need_line (cache, idx, oline, cache->first + cache->lines->len, |
| cache->need_line_data)) |
| break; |
| } |
| GST_DEBUG ("no lines"); |
| return NULL; |
| } |
| |
| static void |
| gst_line_cache_add_line (GstLineCache * cache, gint idx, gpointer line) |
| { |
| if (cache->first + cache->lines->len != idx) { |
| gst_line_cache_clear (cache); |
| cache->first = idx; |
| } |
| g_ptr_array_add (cache->lines, line); |
| } |
| |
| static gpointer |
| gst_line_cache_alloc_line (GstLineCache * cache, gint idx) |
| { |
| gpointer res; |
| |
| if (cache->alloc_line) |
| res = cache->alloc_line (cache, idx, cache->alloc_line_data); |
| else |
| res = NULL; |
| |
| return res; |
| } |
| |
| static void video_converter_generic (GstVideoConverter * convert, |
| const GstVideoFrame * src, GstVideoFrame * dest); |
| static gboolean video_converter_lookup_fastpath (GstVideoConverter * convert); |
| static void video_converter_compute_matrix (GstVideoConverter * convert); |
| static void video_converter_compute_resample (GstVideoConverter * convert, |
| gint idx); |
| |
| static gpointer get_dest_line (GstLineCache * cache, gint idx, |
| gpointer user_data); |
| |
| static gboolean do_unpack_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| static gboolean do_downsample_lines (GstLineCache * cache, gint idx, |
| gint out_line, gint in_line, gpointer user_data); |
| static gboolean do_convert_to_RGB_lines (GstLineCache * cache, gint idx, |
| gint out_line, gint in_line, gpointer user_data); |
| static gboolean do_convert_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| static gboolean do_alpha_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| static gboolean do_convert_to_YUV_lines (GstLineCache * cache, gint idx, |
| gint out_line, gint in_line, gpointer user_data); |
| static gboolean do_upsample_lines (GstLineCache * cache, gint idx, |
| gint out_line, gint in_line, gpointer user_data); |
| static gboolean do_vscale_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| static gboolean do_hscale_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| static gboolean do_dither_lines (GstLineCache * cache, gint idx, gint out_line, |
| gint in_line, gpointer user_data); |
| |
| static ConverterAlloc * |
| converter_alloc_new (guint stride, guint n_lines, gpointer user_data, |
| GDestroyNotify notify) |
| { |
| ConverterAlloc *alloc; |
| |
| GST_DEBUG ("stride %d, n_lines %d", stride, n_lines); |
| alloc = g_slice_new0 (ConverterAlloc); |
| alloc->data = g_malloc (stride * n_lines); |
| alloc->stride = stride; |
| alloc->n_lines = n_lines; |
| alloc->idx = 0; |
| alloc->user_data = user_data; |
| alloc->notify = notify; |
| |
| return alloc; |
| } |
| |
| static void |
| converter_alloc_free (ConverterAlloc * alloc) |
| { |
| if (alloc->notify) |
| alloc->notify (alloc->user_data); |
| g_free (alloc->data); |
| g_slice_free (ConverterAlloc, alloc); |
| } |
| |
| static void |
| setup_border_alloc (GstVideoConverter * convert, ConverterAlloc * alloc) |
| { |
| gint i; |
| |
| if (convert->borderline) { |
| for (i = 0; i < alloc->n_lines; i++) |
| memcpy (&alloc->data[i * alloc->stride], convert->borderline, |
| alloc->stride); |
| } |
| } |
| |
| static gpointer |
| get_temp_line (GstLineCache * cache, gint idx, gpointer user_data) |
| { |
| ConverterAlloc *alloc = user_data; |
| gpointer tmpline; |
| |
| GST_DEBUG ("get temp line %d (%p %d)", idx, alloc, alloc->idx); |
| tmpline = &alloc->data[alloc->stride * alloc->idx]; |
| alloc->idx = (alloc->idx + 1) % alloc->n_lines; |
| |
| return tmpline; |
| } |
| |
| static gpointer |
| get_border_temp_line (GstLineCache * cache, gint idx, gpointer user_data) |
| { |
| ConverterAlloc *alloc = user_data; |
| GstVideoConverter *convert = alloc->user_data; |
| gpointer tmpline; |
| |
| GST_DEBUG ("get temp line %d (%p %d)", idx, alloc, alloc->idx); |
| tmpline = &alloc->data[alloc->stride * alloc->idx] + |
| (convert->out_x * convert->pack_pstride); |
| alloc->idx = (alloc->idx + 1) % alloc->n_lines; |
| |
| return tmpline; |
| } |
| |
| static gint |
| get_opt_int (GstVideoConverter * convert, const gchar * opt, gint def) |
| { |
| gint res; |
| if (!gst_structure_get_int (convert->config, opt, &res)) |
| res = def; |
| return res; |
| } |
| |
| static guint |
| get_opt_uint (GstVideoConverter * convert, const gchar * opt, guint def) |
| { |
| guint res; |
| if (!gst_structure_get_uint (convert->config, opt, &res)) |
| res = def; |
| return res; |
| } |
| |
| static gdouble |
| get_opt_double (GstVideoConverter * convert, const gchar * opt, gdouble def) |
| { |
| gdouble res; |
| if (!gst_structure_get_double (convert->config, opt, &res)) |
| res = def; |
| return res; |
| } |
| |
| static gboolean |
| get_opt_bool (GstVideoConverter * convert, const gchar * opt, gboolean def) |
| { |
| gboolean res; |
| if (!gst_structure_get_boolean (convert->config, opt, &res)) |
| res = def; |
| return res; |
| } |
| |
| static gint |
| get_opt_enum (GstVideoConverter * convert, const gchar * opt, GType type, |
| gint def) |
| { |
| gint res; |
| if (!gst_structure_get_enum (convert->config, opt, type, &res)) |
| res = def; |
| return res; |
| } |
| |
| #define DEFAULT_OPT_FILL_BORDER TRUE |
| #define DEFAULT_OPT_ALPHA_VALUE 1.0 |
| /* options copy, set, mult */ |
| #define DEFAULT_OPT_ALPHA_MODE GST_VIDEO_ALPHA_MODE_COPY |
| #define DEFAULT_OPT_BORDER_ARGB 0xff000000 |
| /* options full, input-only, output-only, none */ |
| #define DEFAULT_OPT_MATRIX_MODE GST_VIDEO_MATRIX_MODE_FULL |
| /* none, remap */ |
| #define DEFAULT_OPT_GAMMA_MODE GST_VIDEO_GAMMA_MODE_NONE |
| /* none, merge-only, fast */ |
| #define DEFAULT_OPT_PRIMARIES_MODE GST_VIDEO_PRIMARIES_MODE_NONE |
| /* options full, upsample-only, downsample-only, none */ |
| #define DEFAULT_OPT_CHROMA_MODE GST_VIDEO_CHROMA_MODE_FULL |
| #define DEFAULT_OPT_RESAMPLER_METHOD GST_VIDEO_RESAMPLER_METHOD_CUBIC |
| #define DEFAULT_OPT_CHROMA_RESAMPLER_METHOD GST_VIDEO_RESAMPLER_METHOD_LINEAR |
| #define DEFAULT_OPT_RESAMPLER_TAPS 0 |
| #define DEFAULT_OPT_DITHER_METHOD GST_VIDEO_DITHER_BAYER |
| #define DEFAULT_OPT_DITHER_QUANTIZATION 1 |
| |
| #define GET_OPT_FILL_BORDER(c) get_opt_bool(c, \ |
| GST_VIDEO_CONVERTER_OPT_FILL_BORDER, DEFAULT_OPT_FILL_BORDER) |
| #define GET_OPT_ALPHA_VALUE(c) get_opt_double(c, \ |
| GST_VIDEO_CONVERTER_OPT_ALPHA_VALUE, DEFAULT_OPT_ALPHA_VALUE) |
| #define GET_OPT_ALPHA_MODE(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_ALPHA_MODE, GST_TYPE_VIDEO_ALPHA_MODE, DEFAULT_OPT_ALPHA_MODE) |
| #define GET_OPT_BORDER_ARGB(c) get_opt_uint(c, \ |
| GST_VIDEO_CONVERTER_OPT_BORDER_ARGB, DEFAULT_OPT_BORDER_ARGB) |
| #define GET_OPT_MATRIX_MODE(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_MATRIX_MODE, GST_TYPE_VIDEO_MATRIX_MODE, DEFAULT_OPT_MATRIX_MODE) |
| #define GET_OPT_GAMMA_MODE(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_GAMMA_MODE, GST_TYPE_VIDEO_GAMMA_MODE, DEFAULT_OPT_GAMMA_MODE) |
| #define GET_OPT_PRIMARIES_MODE(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_PRIMARIES_MODE, GST_TYPE_VIDEO_PRIMARIES_MODE, DEFAULT_OPT_PRIMARIES_MODE) |
| #define GET_OPT_CHROMA_MODE(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_CHROMA_MODE, GST_TYPE_VIDEO_CHROMA_MODE, DEFAULT_OPT_CHROMA_MODE) |
| #define GET_OPT_RESAMPLER_METHOD(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_RESAMPLER_METHOD, GST_TYPE_VIDEO_RESAMPLER_METHOD, \ |
| DEFAULT_OPT_RESAMPLER_METHOD) |
| #define GET_OPT_CHROMA_RESAMPLER_METHOD(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_CHROMA_RESAMPLER_METHOD, GST_TYPE_VIDEO_RESAMPLER_METHOD, \ |
| DEFAULT_OPT_CHROMA_RESAMPLER_METHOD) |
| #define GET_OPT_RESAMPLER_TAPS(c) get_opt_uint(c, \ |
| GST_VIDEO_CONVERTER_OPT_RESAMPLER_TAPS, DEFAULT_OPT_RESAMPLER_TAPS) |
| #define GET_OPT_DITHER_METHOD(c) get_opt_enum(c, \ |
| GST_VIDEO_CONVERTER_OPT_DITHER_METHOD, GST_TYPE_VIDEO_DITHER_METHOD, \ |
| DEFAULT_OPT_DITHER_METHOD) |
| #define GET_OPT_DITHER_QUANTIZATION(c) get_opt_uint(c, \ |
| GST_VIDEO_CONVERTER_OPT_DITHER_QUANTIZATION, DEFAULT_OPT_DITHER_QUANTIZATION) |
| |
| #define CHECK_ALPHA_COPY(c) (GET_OPT_ALPHA_MODE(c) == GST_VIDEO_ALPHA_MODE_COPY) |
| #define CHECK_ALPHA_SET(c) (GET_OPT_ALPHA_MODE(c) == GST_VIDEO_ALPHA_MODE_SET) |
| #define CHECK_ALPHA_MULT(c) (GET_OPT_ALPHA_MODE(c) == GST_VIDEO_ALPHA_MODE_MULT) |
| |
| #define CHECK_MATRIX_FULL(c) (GET_OPT_MATRIX_MODE(c) == GST_VIDEO_MATRIX_MODE_FULL) |
| #define CHECK_MATRIX_INPUT(c) (GET_OPT_MATRIX_MODE(c) == GST_VIDEO_MATRIX_MODE_INPUT_ONLY) |
| #define CHECK_MATRIX_OUTPUT(c) (GET_OPT_MATRIX_MODE(c) == GST_VIDEO_MATRIX_MODE_OUTPUT_ONLY) |
| #define CHECK_MATRIX_NONE(c) (GET_OPT_MATRIX_MODE(c) == GST_VIDEO_MATRIX_MODE_NONE) |
| |
| #define CHECK_GAMMA_NONE(c) (GET_OPT_GAMMA_MODE(c) == GST_VIDEO_GAMMA_MODE_NONE) |
| #define CHECK_GAMMA_REMAP(c) (GET_OPT_GAMMA_MODE(c) == GST_VIDEO_GAMMA_MODE_REMAP) |
| |
| #define CHECK_PRIMARIES_NONE(c) (GET_OPT_PRIMARIES_MODE(c) == GST_VIDEO_PRIMARIES_MODE_NONE) |
| #define CHECK_PRIMARIES_MERGE(c) (GET_OPT_PRIMARIES_MODE(c) == GST_VIDEO_PRIMARIES_MODE_MERGE_ONLY) |
| #define CHECK_PRIMARIES_FAST(c) (GET_OPT_PRIMARIES_MODE(c) == GST_VIDEO_PRIMARIES_MODE_FAST) |
| |
| #define CHECK_CHROMA_FULL(c) (GET_OPT_CHROMA_MODE(c) == GST_VIDEO_CHROMA_MODE_FULL) |
| #define CHECK_CHROMA_UPSAMPLE(c) (GET_OPT_CHROMA_MODE(c) == GST_VIDEO_CHROMA_MODE_UPSAMPLE_ONLY) |
| #define CHECK_CHROMA_DOWNSAMPLE(c) (GET_OPT_CHROMA_MODE(c) == GST_VIDEO_CHROMA_MODE_DOWNSAMPLE_ONLY) |
| #define CHECK_CHROMA_NONE(c) (GET_OPT_CHROMA_MODE(c) == GST_VIDEO_CHROMA_MODE_NONE) |
| |
| static GstLineCache * |
| chain_unpack_line (GstVideoConverter * convert, gint idx) |
| { |
| GstLineCache *prev; |
| GstVideoInfo *info; |
| |
| info = &convert->in_info; |
| |
| convert->current_format = convert->unpack_format; |
| convert->current_bits = convert->unpack_bits; |
| convert->current_pstride = convert->current_bits >> 1; |
| |
| convert->unpack_pstride = convert->current_pstride; |
| convert->identity_unpack = (convert->current_format == info->finfo->format); |
| |
| GST_DEBUG ("chain unpack line format %s, pstride %d, identity_unpack %d", |
| gst_video_format_to_string (convert->current_format), |
| convert->current_pstride, convert->identity_unpack); |
| |
| prev = convert->unpack_lines[idx] = gst_line_cache_new (NULL); |
| prev->write_input = FALSE; |
| prev->pass_alloc = FALSE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, do_unpack_lines, idx, convert, NULL); |
| |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_upsample (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| video_converter_compute_resample (convert, idx); |
| |
| if (convert->upsample_p[idx] || convert->upsample_i[idx]) { |
| GST_DEBUG ("chain upsample"); |
| prev = convert->upsample_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = TRUE; |
| prev->n_lines = 4; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, |
| do_upsample_lines, idx, convert, NULL); |
| } |
| return prev; |
| } |
| |
| static void |
| color_matrix_set_identity (MatrixData * m) |
| { |
| int i, j; |
| |
| for (i = 0; i < 4; i++) { |
| for (j = 0; j < 4; j++) { |
| m->dm[i][j] = (i == j); |
| } |
| } |
| } |
| |
| static void |
| color_matrix_copy (MatrixData * d, const MatrixData * s) |
| { |
| gint i, j; |
| |
| for (i = 0; i < 4; i++) |
| for (j = 0; j < 4; j++) |
| d->dm[i][j] = s->dm[i][j]; |
| } |
| |
| /* Perform 4x4 matrix multiplication: |
| * - @dst@ = @a@ * @b@ |
| * - @dst@ may be a pointer to @a@ andor @b@ |
| */ |
| static void |
| color_matrix_multiply (MatrixData * dst, MatrixData * a, MatrixData * b) |
| { |
| MatrixData tmp; |
| int i, j, k; |
| |
| for (i = 0; i < 4; i++) { |
| for (j = 0; j < 4; j++) { |
| double x = 0; |
| for (k = 0; k < 4; k++) { |
| x += a->dm[i][k] * b->dm[k][j]; |
| } |
| tmp.dm[i][j] = x; |
| } |
| } |
| color_matrix_copy (dst, &tmp); |
| } |
| |
| static void |
| color_matrix_invert (MatrixData * d, MatrixData * s) |
| { |
| MatrixData tmp; |
| int i, j; |
| double det; |
| |
| color_matrix_set_identity (&tmp); |
| for (j = 0; j < 3; j++) { |
| for (i = 0; i < 3; i++) { |
| tmp.dm[j][i] = |
| s->dm[(i + 1) % 3][(j + 1) % 3] * s->dm[(i + 2) % 3][(j + 2) % 3] - |
| s->dm[(i + 1) % 3][(j + 2) % 3] * s->dm[(i + 2) % 3][(j + 1) % 3]; |
| } |
| } |
| det = |
| tmp.dm[0][0] * s->dm[0][0] + tmp.dm[0][1] * s->dm[1][0] + |
| tmp.dm[0][2] * s->dm[2][0]; |
| for (j = 0; j < 3; j++) { |
| for (i = 0; i < 3; i++) { |
| tmp.dm[i][j] /= det; |
| } |
| } |
| color_matrix_copy (d, &tmp); |
| } |
| |
| static void |
| color_matrix_offset_components (MatrixData * m, double a1, double a2, double a3) |
| { |
| MatrixData a; |
| |
| color_matrix_set_identity (&a); |
| a.dm[0][3] = a1; |
| a.dm[1][3] = a2; |
| a.dm[2][3] = a3; |
| color_matrix_multiply (m, &a, m); |
| } |
| |
| static void |
| color_matrix_scale_components (MatrixData * m, double a1, double a2, double a3) |
| { |
| MatrixData a; |
| |
| color_matrix_set_identity (&a); |
| a.dm[0][0] = a1; |
| a.dm[1][1] = a2; |
| a.dm[2][2] = a3; |
| color_matrix_multiply (m, &a, m); |
| } |
| |
| static void |
| color_matrix_debug (const MatrixData * s) |
| { |
| GST_DEBUG ("[%f %f %f %f]", s->dm[0][0], s->dm[0][1], s->dm[0][2], |
| s->dm[0][3]); |
| GST_DEBUG ("[%f %f %f %f]", s->dm[1][0], s->dm[1][1], s->dm[1][2], |
| s->dm[1][3]); |
| GST_DEBUG ("[%f %f %f %f]", s->dm[2][0], s->dm[2][1], s->dm[2][2], |
| s->dm[2][3]); |
| GST_DEBUG ("[%f %f %f %f]", s->dm[3][0], s->dm[3][1], s->dm[3][2], |
| s->dm[3][3]); |
| } |
| |
| static void |
| color_matrix_convert (MatrixData * s) |
| { |
| gint i, j; |
| |
| for (i = 0; i < 4; i++) |
| for (j = 0; j < 4; j++) |
| s->im[i][j] = rint (s->dm[i][j]); |
| |
| GST_DEBUG ("[%6d %6d %6d %6d]", s->im[0][0], s->im[0][1], s->im[0][2], |
| s->im[0][3]); |
| GST_DEBUG ("[%6d %6d %6d %6d]", s->im[1][0], s->im[1][1], s->im[1][2], |
| s->im[1][3]); |
| GST_DEBUG ("[%6d %6d %6d %6d]", s->im[2][0], s->im[2][1], s->im[2][2], |
| s->im[2][3]); |
| GST_DEBUG ("[%6d %6d %6d %6d]", s->im[3][0], s->im[3][1], s->im[3][2], |
| s->im[3][3]); |
| } |
| |
| static void |
| color_matrix_YCbCr_to_RGB (MatrixData * m, double Kr, double Kb) |
| { |
| double Kg = 1.0 - Kr - Kb; |
| MatrixData k = { |
| { |
| {1., 0., 2 * (1 - Kr), 0.}, |
| {1., -2 * Kb * (1 - Kb) / Kg, -2 * Kr * (1 - Kr) / Kg, 0.}, |
| {1., 2 * (1 - Kb), 0., 0.}, |
| {0., 0., 0., 1.}, |
| } |
| }; |
| |
| color_matrix_multiply (m, &k, m); |
| } |
| |
| static void |
| color_matrix_RGB_to_YCbCr (MatrixData * m, double Kr, double Kb) |
| { |
| double Kg = 1.0 - Kr - Kb; |
| MatrixData k; |
| double x; |
| |
| k.dm[0][0] = Kr; |
| k.dm[0][1] = Kg; |
| k.dm[0][2] = Kb; |
| k.dm[0][3] = 0; |
| |
| x = 1 / (2 * (1 - Kb)); |
| k.dm[1][0] = -x * Kr; |
| k.dm[1][1] = -x * Kg; |
| k.dm[1][2] = x * (1 - Kb); |
| k.dm[1][3] = 0; |
| |
| x = 1 / (2 * (1 - Kr)); |
| k.dm[2][0] = x * (1 - Kr); |
| k.dm[2][1] = -x * Kg; |
| k.dm[2][2] = -x * Kb; |
| k.dm[2][3] = 0; |
| |
| k.dm[3][0] = 0; |
| k.dm[3][1] = 0; |
| k.dm[3][2] = 0; |
| k.dm[3][3] = 1; |
| |
| color_matrix_multiply (m, &k, m); |
| } |
| |
| static void |
| color_matrix_RGB_to_XYZ (MatrixData * dst, double Rx, double Ry, double Gx, |
| double Gy, double Bx, double By, double Wx, double Wy) |
| { |
| MatrixData m, im; |
| double sx, sy, sz; |
| double wx, wy, wz; |
| |
| color_matrix_set_identity (&m); |
| |
| m.dm[0][0] = Rx; |
| m.dm[1][0] = Ry; |
| m.dm[2][0] = (1.0 - Rx - Ry); |
| m.dm[0][1] = Gx; |
| m.dm[1][1] = Gy; |
| m.dm[2][1] = (1.0 - Gx - Gy); |
| m.dm[0][2] = Bx; |
| m.dm[1][2] = By; |
| m.dm[2][2] = (1.0 - Bx - By); |
| |
| color_matrix_invert (&im, &m); |
| |
| wx = Wx / Wy; |
| wy = 1.0; |
| wz = (1.0 - Wx - Wy) / Wy; |
| |
| sx = im.dm[0][0] * wx + im.dm[0][1] * wy + im.dm[0][2] * wz; |
| sy = im.dm[1][0] * wx + im.dm[1][1] * wy + im.dm[1][2] * wz; |
| sz = im.dm[2][0] * wx + im.dm[2][1] * wy + im.dm[2][2] * wz; |
| |
| m.dm[0][0] *= sx; |
| m.dm[1][0] *= sx; |
| m.dm[2][0] *= sx; |
| m.dm[0][1] *= sy; |
| m.dm[1][1] *= sy; |
| m.dm[2][1] *= sy; |
| m.dm[0][2] *= sz; |
| m.dm[1][2] *= sz; |
| m.dm[2][2] *= sz; |
| |
| color_matrix_copy (dst, &m); |
| } |
| |
| static void |
| videoconvert_convert_init_tables (MatrixData * data) |
| { |
| gint i, j; |
| |
| data->t_r = g_new (gint64, 256); |
| data->t_g = g_new (gint64, 256); |
| data->t_b = g_new (gint64, 256); |
| |
| for (i = 0; i < 256; i++) { |
| gint64 r = 0, g = 0, b = 0; |
| |
| for (j = 0; j < 3; j++) { |
| r = (r << 16) + data->im[j][0] * i; |
| g = (g << 16) + data->im[j][1] * i; |
| b = (b << 16) + data->im[j][2] * i; |
| } |
| data->t_r[i] = r; |
| data->t_g[i] = g; |
| data->t_b[i] = b; |
| } |
| data->t_c = ((gint64) data->im[0][3] << 32) |
| + ((gint64) data->im[1][3] << 16) |
| + ((gint64) data->im[2][3] << 0); |
| } |
| |
| void |
| _custom_video_orc_matrix8 (guint8 * ORC_RESTRICT d1, |
| const guint8 * ORC_RESTRICT s1, orc_int64 p1, orc_int64 p2, orc_int64 p3, |
| orc_int64 p4, int n) |
| { |
| gint i; |
| gint r, g, b; |
| gint y, u, v; |
| gint a00, a01, a02, a03; |
| gint a10, a11, a12, a13; |
| gint a20, a21, a22, a23; |
| |
| a00 = (gint16) (p1 >> 16); |
| a01 = (gint16) (p2 >> 16); |
| a02 = (gint16) (p3 >> 16); |
| a03 = (gint16) (p4 >> 16); |
| a10 = (gint16) (p1 >> 32); |
| a11 = (gint16) (p2 >> 32); |
| a12 = (gint16) (p3 >> 32); |
| a13 = (gint16) (p4 >> 32); |
| a20 = (gint16) (p1 >> 48); |
| a21 = (gint16) (p2 >> 48); |
| a22 = (gint16) (p3 >> 48); |
| a23 = (gint16) (p4 >> 48); |
| |
| for (i = 0; i < n; i++) { |
| r = s1[i * 4 + 1]; |
| g = s1[i * 4 + 2]; |
| b = s1[i * 4 + 3]; |
| |
| y = ((a00 * r + a01 * g + a02 * b) >> SCALE) + a03; |
| u = ((a10 * r + a11 * g + a12 * b) >> SCALE) + a13; |
| v = ((a20 * r + a21 * g + a22 * b) >> SCALE) + a23; |
| |
| d1[i * 4 + 1] = CLAMP (y, 0, 255); |
| d1[i * 4 + 2] = CLAMP (u, 0, 255); |
| d1[i * 4 + 3] = CLAMP (v, 0, 255); |
| } |
| } |
| |
| static void |
| video_converter_matrix8 (MatrixData * data, gpointer pixels) |
| { |
| gpointer d = pixels; |
| video_orc_matrix8 (d, pixels, data->orc_p1, data->orc_p2, |
| data->orc_p3, data->orc_p4, data->width); |
| } |
| |
| static void |
| video_converter_matrix8_table (MatrixData * data, gpointer pixels) |
| { |
| gint i, width = data->width * 4; |
| guint8 r, g, b; |
| gint64 c = data->t_c; |
| guint8 *p = pixels; |
| gint64 x; |
| |
| for (i = 0; i < width; i += 4) { |
| r = p[i + 1]; |
| g = p[i + 2]; |
| b = p[i + 3]; |
| |
| x = data->t_r[r] + data->t_g[g] + data->t_b[b] + c; |
| |
| p[i + 1] = x >> (32 + SCALE); |
| p[i + 2] = x >> (16 + SCALE); |
| p[i + 3] = x >> (0 + SCALE); |
| } |
| } |
| |
| static void |
| video_converter_matrix8_AYUV_ARGB (MatrixData * data, gpointer pixels) |
| { |
| gpointer d = pixels; |
| |
| video_orc_convert_AYUV_ARGB (d, 0, pixels, 0, |
| data->im[0][0], data->im[0][2], |
| data->im[2][1], data->im[1][1], data->im[1][2], data->width, 1); |
| } |
| |
| static gboolean |
| is_ayuv_to_rgb_matrix (MatrixData * data) |
| { |
| if (data->im[0][0] != data->im[1][0] || data->im[1][0] != data->im[2][0]) |
| return FALSE; |
| |
| if (data->im[0][1] != 0 || data->im[2][2] != 0) |
| return FALSE; |
| |
| return TRUE; |
| } |
| |
| static gboolean |
| is_identity_matrix (MatrixData * data) |
| { |
| gint i, j; |
| gint c = data->im[0][0]; |
| |
| /* not really checking identity because of rounding errors but given |
| * the conversions we do we just check for anything that looks like: |
| * |
| * c 0 0 0 |
| * 0 c 0 0 |
| * 0 0 c 0 |
| * 0 0 0 1 |
| */ |
| for (i = 0; i < 4; i++) { |
| for (j = 0; j < 4; j++) { |
| if (i == j) { |
| if (i == 3 && data->im[i][j] != 1) |
| return FALSE; |
| else if (data->im[i][j] != c) |
| return FALSE; |
| } else if (data->im[i][j] != 0) |
| return FALSE; |
| } |
| } |
| return TRUE; |
| } |
| |
| static gboolean |
| is_no_clip_matrix (MatrixData * data) |
| { |
| gint i; |
| static const guint8 test[8][3] = { |
| {0, 0, 0}, |
| {0, 0, 255}, |
| {0, 255, 0}, |
| {0, 255, 255}, |
| {255, 0, 0}, |
| {255, 0, 255}, |
| {255, 255, 0}, |
| {255, 255, 255} |
| }; |
| |
| for (i = 0; i < 8; i++) { |
| gint r, g, b; |
| gint y, u, v; |
| |
| r = test[i][0]; |
| g = test[i][1]; |
| b = test[i][2]; |
| |
| y = (data->im[0][0] * r + data->im[0][1] * g + |
| data->im[0][2] * b + data->im[0][3]) >> SCALE; |
| u = (data->im[1][0] * r + data->im[1][1] * g + |
| data->im[1][2] * b + data->im[1][3]) >> SCALE; |
| v = (data->im[2][0] * r + data->im[2][1] * g + |
| data->im[2][2] * b + data->im[2][3]) >> SCALE; |
| |
| if (y != CLAMP (y, 0, 255) || u != CLAMP (u, 0, 255) |
| || v != CLAMP (v, 0, 255)) |
| return FALSE; |
| } |
| return TRUE; |
| } |
| |
| static void |
| video_converter_matrix16 (MatrixData * data, gpointer pixels) |
| { |
| int i; |
| int r, g, b; |
| int y, u, v; |
| guint16 *p = pixels; |
| gint width = data->width; |
| |
| for (i = 0; i < width; i++) { |
| r = p[i * 4 + 1]; |
| g = p[i * 4 + 2]; |
| b = p[i * 4 + 3]; |
| |
| y = (data->im[0][0] * r + data->im[0][1] * g + |
| data->im[0][2] * b + data->im[0][3]) >> SCALE; |
| u = (data->im[1][0] * r + data->im[1][1] * g + |
| data->im[1][2] * b + data->im[1][3]) >> SCALE; |
| v = (data->im[2][0] * r + data->im[2][1] * g + |
| data->im[2][2] * b + data->im[2][3]) >> SCALE; |
| |
| p[i * 4 + 1] = CLAMP (y, 0, 65535); |
| p[i * 4 + 2] = CLAMP (u, 0, 65535); |
| p[i * 4 + 3] = CLAMP (v, 0, 65535); |
| } |
| } |
| |
| |
| static void |
| prepare_matrix (GstVideoConverter * convert, MatrixData * data) |
| { |
| if (is_identity_matrix (data)) |
| return; |
| |
| color_matrix_scale_components (data, SCALE_F, SCALE_F, SCALE_F); |
| color_matrix_convert (data); |
| |
| data->width = convert->current_width; |
| |
| if (convert->current_bits == 8) { |
| if (!convert->unpack_rgb && convert->pack_rgb |
| && is_ayuv_to_rgb_matrix (data)) { |
| GST_DEBUG ("use fast AYUV -> RGB matrix"); |
| data->matrix_func = video_converter_matrix8_AYUV_ARGB; |
| } else if (is_no_clip_matrix (data)) { |
| GST_DEBUG ("use 8bit table"); |
| data->matrix_func = video_converter_matrix8_table; |
| videoconvert_convert_init_tables (data); |
| } else { |
| gint a03, a13, a23; |
| |
| GST_DEBUG ("use 8bit matrix"); |
| data->matrix_func = video_converter_matrix8; |
| |
| data->orc_p1 = (((guint64) (guint16) data->im[2][0]) << 48) | |
| (((guint64) (guint16) data->im[1][0]) << 32) | |
| (((guint64) (guint16) data->im[0][0]) << 16); |
| data->orc_p2 = (((guint64) (guint16) data->im[2][1]) << 48) | |
| (((guint64) (guint16) data->im[1][1]) << 32) | |
| (((guint64) (guint16) data->im[0][1]) << 16); |
| data->orc_p3 = (((guint64) (guint16) data->im[2][2]) << 48) | |
| (((guint64) (guint16) data->im[1][2]) << 32) | |
| (((guint64) (guint16) data->im[0][2]) << 16); |
| |
| a03 = data->im[0][3] >> SCALE; |
| a13 = data->im[1][3] >> SCALE; |
| a23 = data->im[2][3] >> SCALE; |
| |
| data->orc_p4 = (((guint64) (guint16) a23) << 48) | |
| (((guint64) (guint16) a13) << 32) | (((guint64) (guint16) a03) << 16); |
| } |
| } else { |
| GST_DEBUG ("use 16bit matrix"); |
| data->matrix_func = video_converter_matrix16; |
| } |
| } |
| |
| static void |
| compute_matrix_to_RGB (GstVideoConverter * convert, MatrixData * data) |
| { |
| GstVideoInfo *info; |
| gdouble Kr = 0, Kb = 0; |
| |
| info = &convert->in_info; |
| |
| { |
| const GstVideoFormatInfo *uinfo; |
| gint offset[4], scale[4]; |
| |
| uinfo = gst_video_format_get_info (convert->unpack_format); |
| |
| /* bring color components to [0..1.0] range */ |
| gst_video_color_range_offsets (info->colorimetry.range, uinfo, offset, |
| scale); |
| |
| color_matrix_offset_components (data, -offset[0], -offset[1], -offset[2]); |
| color_matrix_scale_components (data, 1 / ((float) scale[0]), |
| 1 / ((float) scale[1]), 1 / ((float) scale[2])); |
| } |
| |
| if (!convert->unpack_rgb && !CHECK_MATRIX_NONE (convert)) { |
| if (CHECK_MATRIX_OUTPUT (convert)) |
| info = &convert->out_info; |
| |
| /* bring components to R'G'B' space */ |
| if (gst_video_color_matrix_get_Kr_Kb (info->colorimetry.matrix, &Kr, &Kb)) |
| color_matrix_YCbCr_to_RGB (data, Kr, Kb); |
| } |
| color_matrix_debug (data); |
| } |
| |
| static void |
| compute_matrix_to_YUV (GstVideoConverter * convert, MatrixData * data, |
| gboolean force) |
| { |
| GstVideoInfo *info; |
| gdouble Kr = 0, Kb = 0; |
| |
| if (force || (!convert->pack_rgb && !CHECK_MATRIX_NONE (convert))) { |
| if (CHECK_MATRIX_INPUT (convert)) |
| info = &convert->in_info; |
| else |
| info = &convert->out_info; |
| |
| /* bring components to YCbCr space */ |
| if (gst_video_color_matrix_get_Kr_Kb (info->colorimetry.matrix, &Kr, &Kb)) |
| color_matrix_RGB_to_YCbCr (data, Kr, Kb); |
| } |
| |
| info = &convert->out_info; |
| |
| { |
| const GstVideoFormatInfo *uinfo; |
| gint offset[4], scale[4]; |
| |
| uinfo = gst_video_format_get_info (convert->pack_format); |
| |
| /* bring color components to nominal range */ |
| gst_video_color_range_offsets (info->colorimetry.range, uinfo, offset, |
| scale); |
| |
| color_matrix_scale_components (data, (float) scale[0], (float) scale[1], |
| (float) scale[2]); |
| color_matrix_offset_components (data, offset[0], offset[1], offset[2]); |
| } |
| |
| color_matrix_debug (data); |
| } |
| |
| |
| static void |
| gamma_convert_u8_u16 (GammaData * data, gpointer dest, gpointer src) |
| { |
| gint i; |
| guint8 *s = src; |
| guint16 *d = dest; |
| guint16 *table = data->gamma_table; |
| gint width = data->width * 4; |
| |
| for (i = 0; i < width; i += 4) { |
| d[i + 0] = (s[i] << 8) | s[i]; |
| d[i + 1] = table[s[i + 1]]; |
| d[i + 2] = table[s[i + 2]]; |
| d[i + 3] = table[s[i + 3]]; |
| } |
| } |
| |
| static void |
| gamma_convert_u16_u8 (GammaData * data, gpointer dest, gpointer src) |
| { |
| gint i; |
| guint16 *s = src; |
| guint8 *d = dest; |
| guint8 *table = data->gamma_table; |
| gint width = data->width * 4; |
| |
| for (i = 0; i < width; i += 4) { |
| d[i + 0] = s[i] >> 8; |
| d[i + 1] = table[s[i + 1]]; |
| d[i + 2] = table[s[i + 2]]; |
| d[i + 3] = table[s[i + 3]]; |
| } |
| } |
| |
| static void |
| gamma_convert_u16_u16 (GammaData * data, gpointer dest, gpointer src) |
| { |
| gint i; |
| guint16 *s = src; |
| guint16 *d = dest; |
| guint16 *table = data->gamma_table; |
| gint width = data->width * 4; |
| |
| for (i = 0; i < width; i += 4) { |
| d[i + 0] = s[i]; |
| d[i + 1] = table[s[i + 1]]; |
| d[i + 2] = table[s[i + 2]]; |
| d[i + 3] = table[s[i + 3]]; |
| } |
| } |
| |
| static void |
| setup_gamma_decode (GstVideoConverter * convert) |
| { |
| GstVideoTransferFunction func; |
| guint16 *t; |
| gint i; |
| |
| func = convert->in_info.colorimetry.transfer; |
| |
| convert->gamma_dec.width = convert->current_width; |
| if (convert->current_bits == 8) { |
| GST_DEBUG ("gamma decode 8->16: %d", func); |
| convert->gamma_dec.gamma_func = gamma_convert_u8_u16; |
| t = convert->gamma_dec.gamma_table = g_malloc (sizeof (guint16) * 256); |
| |
| for (i = 0; i < 256; i++) |
| t[i] = rint (gst_video_color_transfer_decode (func, i / 255.0) * 65535.0); |
| } else { |
| GST_DEBUG ("gamma decode 16->16: %d", func); |
| convert->gamma_dec.gamma_func = gamma_convert_u16_u16; |
| t = convert->gamma_dec.gamma_table = g_malloc (sizeof (guint16) * 65536); |
| |
| for (i = 0; i < 65536; i++) |
| t[i] = |
| rint (gst_video_color_transfer_decode (func, i / 65535.0) * 65535.0); |
| } |
| convert->current_bits = 16; |
| convert->current_pstride = 8; |
| convert->current_format = GST_VIDEO_FORMAT_ARGB64; |
| } |
| |
| static void |
| setup_gamma_encode (GstVideoConverter * convert, gint target_bits) |
| { |
| GstVideoTransferFunction func; |
| gint i; |
| |
| func = convert->out_info.colorimetry.transfer; |
| |
| convert->gamma_enc.width = convert->current_width; |
| if (target_bits == 8) { |
| guint8 *t; |
| |
| GST_DEBUG ("gamma encode 16->8: %d", func); |
| convert->gamma_enc.gamma_func = gamma_convert_u16_u8; |
| t = convert->gamma_enc.gamma_table = g_malloc (sizeof (guint8) * 65536); |
| |
| for (i = 0; i < 65536; i++) |
| t[i] = rint (gst_video_color_transfer_encode (func, i / 65535.0) * 255.0); |
| } else { |
| guint16 *t; |
| |
| GST_DEBUG ("gamma encode 16->16: %d", func); |
| convert->gamma_enc.gamma_func = gamma_convert_u16_u16; |
| t = convert->gamma_enc.gamma_table = g_malloc (sizeof (guint16) * 65536); |
| |
| for (i = 0; i < 65536; i++) |
| t[i] = |
| rint (gst_video_color_transfer_encode (func, i / 65535.0) * 65535.0); |
| } |
| } |
| |
| static GstLineCache * |
| chain_convert_to_RGB (GstVideoConverter * convert, GstLineCache * prev, |
| gint idx) |
| { |
| gboolean do_gamma; |
| |
| do_gamma = CHECK_GAMMA_REMAP (convert); |
| |
| if (do_gamma) { |
| gint scale; |
| |
| if (!convert->unpack_rgb) { |
| color_matrix_set_identity (&convert->to_RGB_matrix); |
| compute_matrix_to_RGB (convert, &convert->to_RGB_matrix); |
| |
| /* matrix is in 0..1 range, scale to current bits */ |
| GST_DEBUG ("chain RGB convert"); |
| scale = 1 << convert->current_bits; |
| color_matrix_scale_components (&convert->to_RGB_matrix, |
| (float) scale, (float) scale, (float) scale); |
| |
| prepare_matrix (convert, &convert->to_RGB_matrix); |
| |
| if (convert->current_bits == 8) |
| convert->current_format = GST_VIDEO_FORMAT_ARGB; |
| else |
| convert->current_format = GST_VIDEO_FORMAT_ARGB64; |
| } |
| |
| prev = convert->to_RGB_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = FALSE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, |
| do_convert_to_RGB_lines, idx, convert, NULL); |
| |
| GST_DEBUG ("chain gamma decode"); |
| setup_gamma_decode (convert); |
| } |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_hscale (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| gint method; |
| guint taps; |
| |
| method = GET_OPT_RESAMPLER_METHOD (convert); |
| taps = GET_OPT_RESAMPLER_TAPS (convert); |
| |
| convert->h_scaler[idx] = |
| gst_video_scaler_new (method, GST_VIDEO_SCALER_FLAG_NONE, taps, |
| convert->in_width, convert->out_width, convert->config); |
| |
| gst_video_scaler_get_coeff (convert->h_scaler[idx], 0, NULL, &taps); |
| |
| GST_DEBUG ("chain hscale %d->%d, taps %d, method %d", |
| convert->in_width, convert->out_width, taps, method); |
| |
| convert->current_width = convert->out_width; |
| convert->h_scale_format = convert->current_format; |
| |
| prev = convert->hscale_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = FALSE; |
| prev->pass_alloc = FALSE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, do_hscale_lines, idx, convert, NULL); |
| |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_vscale (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| gint method; |
| guint taps, taps_i = 0; |
| gint backlog = 0; |
| |
| method = GET_OPT_RESAMPLER_METHOD (convert); |
| taps = GET_OPT_RESAMPLER_TAPS (convert); |
| |
| if (GST_VIDEO_INFO_IS_INTERLACED (&convert->in_info)) { |
| convert->v_scaler_i[idx] = |
| gst_video_scaler_new (method, GST_VIDEO_SCALER_FLAG_INTERLACED, |
| taps, convert->in_height, convert->out_height, convert->config); |
| |
| gst_video_scaler_get_coeff (convert->v_scaler_i[idx], 0, NULL, &taps_i); |
| backlog = taps_i; |
| } |
| convert->v_scaler_p[idx] = |
| gst_video_scaler_new (method, 0, taps, convert->in_height, |
| convert->out_height, convert->config); |
| convert->v_scale_width = convert->current_width; |
| convert->v_scale_format = convert->current_format; |
| convert->current_height = convert->out_height; |
| |
| gst_video_scaler_get_coeff (convert->v_scaler_p[idx], 0, NULL, &taps); |
| |
| GST_DEBUG ("chain vscale %d->%d, taps %d, method %d, backlog %d", |
| convert->in_height, convert->out_height, taps, method, backlog); |
| |
| prev->backlog = backlog; |
| prev = convert->vscale_lines[idx] = gst_line_cache_new (prev); |
| prev->pass_alloc = (taps == 1); |
| prev->write_input = FALSE; |
| prev->n_lines = MAX (taps_i, taps); |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, do_vscale_lines, idx, convert, NULL); |
| |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_scale (GstVideoConverter * convert, GstLineCache * prev, gboolean force, |
| gint idx) |
| { |
| gint s0, s1, s2, s3; |
| |
| s0 = convert->current_width * convert->current_height; |
| s3 = convert->out_width * convert->out_height; |
| |
| GST_DEBUG ("in pixels %d <> out pixels %d", s0, s3); |
| |
| if (s3 <= s0 || force) { |
| /* we are making the image smaller or are forced to resample */ |
| s1 = convert->out_width * convert->current_height; |
| s2 = convert->current_width * convert->out_height; |
| |
| GST_DEBUG ("%d <> %d", s1, s2); |
| |
| if (s1 <= s2) { |
| /* h scaling first produces less pixels */ |
| if (convert->current_width != convert->out_width) |
| prev = chain_hscale (convert, prev, idx); |
| if (convert->current_height != convert->out_height) |
| prev = chain_vscale (convert, prev, idx); |
| } else { |
| /* v scaling first produces less pixels */ |
| if (convert->current_height != convert->out_height) |
| prev = chain_vscale (convert, prev, idx); |
| if (convert->current_width != convert->out_width) |
| prev = chain_hscale (convert, prev, idx); |
| } |
| } |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_convert (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| gboolean do_gamma, do_conversion, pass_alloc = FALSE; |
| gboolean same_matrix, same_primaries, same_bits; |
| MatrixData p1, p2; |
| |
| same_bits = convert->unpack_bits == convert->pack_bits; |
| if (CHECK_MATRIX_NONE (convert)) { |
| same_matrix = TRUE; |
| } else { |
| same_matrix = |
| convert->in_info.colorimetry.matrix == |
| convert->out_info.colorimetry.matrix; |
| } |
| |
| if (CHECK_PRIMARIES_NONE (convert)) { |
| same_primaries = TRUE; |
| } else { |
| same_primaries = |
| convert->in_info.colorimetry.primaries == |
| convert->out_info.colorimetry.primaries; |
| } |
| |
| GST_DEBUG ("matrix %d -> %d (%d)", convert->in_info.colorimetry.matrix, |
| convert->out_info.colorimetry.matrix, same_matrix); |
| GST_DEBUG ("bits %d -> %d (%d)", convert->unpack_bits, convert->pack_bits, |
| same_bits); |
| GST_DEBUG ("primaries %d -> %d (%d)", convert->in_info.colorimetry.primaries, |
| convert->out_info.colorimetry.primaries, same_primaries); |
| |
| color_matrix_set_identity (&convert->convert_matrix); |
| |
| if (!same_primaries) { |
| const GstVideoColorPrimariesInfo *pi; |
| |
| pi = gst_video_color_primaries_get_info (convert->in_info.colorimetry. |
| primaries); |
| color_matrix_RGB_to_XYZ (&p1, pi->Rx, pi->Ry, pi->Gx, pi->Gy, pi->Bx, |
| pi->By, pi->Wx, pi->Wy); |
| GST_DEBUG ("to XYZ matrix"); |
| color_matrix_debug (&p1); |
| GST_DEBUG ("current matrix"); |
| color_matrix_multiply (&convert->convert_matrix, &convert->convert_matrix, |
| &p1); |
| color_matrix_debug (&convert->convert_matrix); |
| |
| pi = gst_video_color_primaries_get_info (convert->out_info.colorimetry. |
| primaries); |
| color_matrix_RGB_to_XYZ (&p2, pi->Rx, pi->Ry, pi->Gx, pi->Gy, pi->Bx, |
| pi->By, pi->Wx, pi->Wy); |
| color_matrix_invert (&p2, &p2); |
| GST_DEBUG ("to RGB matrix"); |
| color_matrix_debug (&p2); |
| color_matrix_multiply (&convert->convert_matrix, &convert->convert_matrix, |
| &p2); |
| GST_DEBUG ("current matrix"); |
| color_matrix_debug (&convert->convert_matrix); |
| } |
| |
| do_gamma = CHECK_GAMMA_REMAP (convert); |
| if (!do_gamma) { |
| |
| convert->in_bits = convert->unpack_bits; |
| convert->out_bits = convert->pack_bits; |
| |
| if (!same_bits || !same_matrix || !same_primaries) { |
| /* no gamma, combine all conversions into 1 */ |
| if (convert->in_bits < convert->out_bits) { |
| gint scale = 1 << (convert->out_bits - convert->in_bits); |
| color_matrix_scale_components (&convert->convert_matrix, |
| 1 / (float) scale, 1 / (float) scale, 1 / (float) scale); |
| } |
| GST_DEBUG ("to RGB matrix"); |
| compute_matrix_to_RGB (convert, &convert->convert_matrix); |
| GST_DEBUG ("current matrix"); |
| color_matrix_debug (&convert->convert_matrix); |
| |
| GST_DEBUG ("to YUV matrix"); |
| compute_matrix_to_YUV (convert, &convert->convert_matrix, FALSE); |
| GST_DEBUG ("current matrix"); |
| color_matrix_debug (&convert->convert_matrix); |
| if (convert->in_bits > convert->out_bits) { |
| gint scale = 1 << (convert->in_bits - convert->out_bits); |
| color_matrix_scale_components (&convert->convert_matrix, |
| (float) scale, (float) scale, (float) scale); |
| } |
| convert->current_bits = MAX (convert->in_bits, convert->out_bits); |
| |
| do_conversion = TRUE; |
| if (!same_matrix || !same_primaries) |
| prepare_matrix (convert, &convert->convert_matrix); |
| if (convert->in_bits == convert->out_bits) |
| pass_alloc = TRUE; |
| } else |
| do_conversion = FALSE; |
| |
| convert->current_bits = convert->pack_bits; |
| convert->current_format = convert->pack_format; |
| convert->current_pstride = convert->current_bits >> 1; |
| } else { |
| /* we did gamma, just do colorspace conversion if needed */ |
| if (same_primaries) { |
| do_conversion = FALSE; |
| } else { |
| prepare_matrix (convert, &convert->convert_matrix); |
| convert->in_bits = convert->out_bits = 16; |
| pass_alloc = TRUE; |
| do_conversion = TRUE; |
| } |
| } |
| |
| if (do_conversion) { |
| GST_DEBUG ("chain conversion"); |
| prev = convert->convert_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = pass_alloc; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, |
| do_convert_lines, idx, convert, NULL); |
| } |
| return prev; |
| } |
| |
| static void |
| convert_set_alpha_u8 (GstVideoConverter * convert, gpointer pixels, gint width) |
| { |
| guint8 *p = pixels; |
| guint8 alpha = MIN (convert->alpha_value, 255); |
| int i; |
| |
| for (i = 0; i < width; i++) |
| p[i * 4] = alpha; |
| } |
| |
| static void |
| convert_set_alpha_u16 (GstVideoConverter * convert, gpointer pixels, gint width) |
| { |
| guint16 *p = pixels; |
| guint16 alpha; |
| int i; |
| |
| alpha = MIN (convert->alpha_value, 255); |
| alpha |= alpha << 8; |
| |
| for (i = 0; i < width; i++) |
| p[i * 4] = alpha; |
| } |
| |
| static void |
| convert_mult_alpha_u8 (GstVideoConverter * convert, gpointer pixels, gint width) |
| { |
| guint8 *p = pixels; |
| guint alpha = convert->alpha_value; |
| int i; |
| |
| for (i = 0; i < width; i++) { |
| gint a = (p[i * 4] * alpha) / 255; |
| p[i * 4] = CLAMP (a, 0, 255); |
| } |
| } |
| |
| static void |
| convert_mult_alpha_u16 (GstVideoConverter * convert, gpointer pixels, |
| gint width) |
| { |
| guint16 *p = pixels; |
| guint alpha = convert->alpha_value; |
| int i; |
| |
| for (i = 0; i < width; i++) { |
| gint a = (p[i * 4] * alpha) / 255; |
| p[i * 4] = CLAMP (a, 0, 65535); |
| } |
| } |
| |
| static GstLineCache * |
| chain_alpha (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| switch (convert->alpha_mode) { |
| case ALPHA_MODE_NONE: |
| case ALPHA_MODE_COPY: |
| return prev; |
| |
| case ALPHA_MODE_SET: |
| if (convert->current_bits == 8) |
| convert->alpha_func = convert_set_alpha_u8; |
| else |
| convert->alpha_func = convert_set_alpha_u16; |
| break; |
| case ALPHA_MODE_MULT: |
| if (convert->current_bits == 8) |
| convert->alpha_func = convert_mult_alpha_u8; |
| else |
| convert->alpha_func = convert_mult_alpha_u16; |
| break; |
| } |
| |
| GST_DEBUG ("chain alpha mode %d", convert->alpha_mode); |
| prev = convert->alpha_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = TRUE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, do_alpha_lines, idx, convert, NULL); |
| |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_convert_to_YUV (GstVideoConverter * convert, GstLineCache * prev, |
| gint idx) |
| { |
| gboolean do_gamma; |
| |
| do_gamma = CHECK_GAMMA_REMAP (convert); |
| |
| if (do_gamma) { |
| gint scale; |
| |
| GST_DEBUG ("chain gamma encode"); |
| setup_gamma_encode (convert, convert->pack_bits); |
| |
| convert->current_bits = convert->pack_bits; |
| convert->current_pstride = convert->current_bits >> 1; |
| |
| if (!convert->pack_rgb) { |
| color_matrix_set_identity (&convert->to_YUV_matrix); |
| compute_matrix_to_YUV (convert, &convert->to_YUV_matrix, FALSE); |
| |
| /* matrix is in 0..255 range, scale to pack bits */ |
| GST_DEBUG ("chain YUV convert"); |
| scale = 1 << convert->pack_bits; |
| color_matrix_scale_components (&convert->to_YUV_matrix, |
| 1 / (float) scale, 1 / (float) scale, 1 / (float) scale); |
| prepare_matrix (convert, &convert->to_YUV_matrix); |
| } |
| convert->current_format = convert->pack_format; |
| |
| prev = convert->to_YUV_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = FALSE; |
| prev->pass_alloc = FALSE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, |
| do_convert_to_YUV_lines, idx, convert, NULL); |
| } |
| |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_downsample (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| if (convert->downsample_p[idx] || convert->downsample_i[idx]) { |
| GST_DEBUG ("chain downsample"); |
| prev = convert->downsample_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = TRUE; |
| prev->n_lines = 4; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, |
| do_downsample_lines, idx, convert, NULL); |
| } |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_dither (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| gint i; |
| gboolean do_dither = FALSE; |
| GstVideoDitherFlags flags = 0; |
| GstVideoDitherMethod method; |
| guint quant[4], target_quant; |
| |
| method = GET_OPT_DITHER_METHOD (convert); |
| if (method == GST_VIDEO_DITHER_NONE) |
| return prev; |
| |
| target_quant = GET_OPT_DITHER_QUANTIZATION (convert); |
| GST_DEBUG ("method %d, target-quantization %d", method, target_quant); |
| |
| if (convert->pack_pal) { |
| quant[0] = 47; |
| quant[1] = 47; |
| quant[2] = 47; |
| quant[3] = 1; |
| do_dither = TRUE; |
| } else { |
| for (i = 0; i < GST_VIDEO_MAX_COMPONENTS; i++) { |
| gint depth; |
| |
| depth = convert->out_info.finfo->depth[i]; |
| |
| if (depth == 0) { |
| quant[i] = 0; |
| continue; |
| } |
| |
| if (convert->current_bits >= depth) { |
| quant[i] = 1 << (convert->current_bits - depth); |
| if (target_quant > quant[i]) { |
| flags |= GST_VIDEO_DITHER_FLAG_QUANTIZE; |
| quant[i] = target_quant; |
| } |
| } else { |
| quant[i] = 0; |
| } |
| if (quant[i] > 1) |
| do_dither = TRUE; |
| } |
| } |
| |
| if (do_dither) { |
| GST_DEBUG ("chain dither"); |
| |
| convert->dither[idx] = gst_video_dither_new (method, |
| flags, convert->pack_format, quant, convert->current_width); |
| |
| prev = convert->dither_lines[idx] = gst_line_cache_new (prev); |
| prev->write_input = TRUE; |
| prev->pass_alloc = TRUE; |
| prev->n_lines = 1; |
| prev->stride = convert->current_pstride * convert->current_width; |
| gst_line_cache_set_need_line_func (prev, do_dither_lines, idx, convert, |
| NULL); |
| } |
| return prev; |
| } |
| |
| static GstLineCache * |
| chain_pack (GstVideoConverter * convert, GstLineCache * prev, gint idx) |
| { |
| convert->pack_nlines = convert->out_info.finfo->pack_lines; |
| convert->pack_pstride = convert->current_pstride; |
| convert->identity_pack = |
| (convert->out_info.finfo->format == |
| convert->out_info.finfo->unpack_format); |
| GST_DEBUG ("chain pack line format %s, pstride %d, identity_pack %d (%d %d)", |
| gst_video_format_to_string (convert->current_format), |
| convert->current_pstride, convert->identity_pack, |
| convert->out_info.finfo->format, convert->out_info.finfo->unpack_format); |
| |
| return prev; |
| } |
| |
| static void |
| setup_allocators (GstVideoConverter * convert) |
| { |
| GstLineCache *cache; |
| GstLineCacheAllocLineFunc alloc_line; |
| gboolean alloc_writable; |
| gpointer user_data; |
| GDestroyNotify notify; |
| gint width, n_lines; |
| gint i; |
| |
| width = MAX (convert->in_maxwidth, convert->out_maxwidth); |
| width += convert->out_x; |
| |
| for (i = 0; i < convert->conversion_runner->n_threads; i++) { |
| n_lines = 1; |
| |
| /* start with using dest lines if we can directly write into it */ |
| if (convert->identity_pack) { |
| alloc_line = get_dest_line; |
| alloc_writable = TRUE; |
| user_data = convert; |
| notify = NULL; |
| } else { |
| user_data = |
| converter_alloc_new (sizeof (guint16) * width * 4, 4 + BACKLOG, |
| convert, NULL); |
| setup_border_alloc (convert, user_data); |
| notify = (GDestroyNotify) converter_alloc_free; |
| alloc_line = get_border_temp_line; |
| /* when we add a border, we need to write */ |
| alloc_writable = convert->borderline != NULL; |
| } |
| |
| /* now walk backwards, we try to write into the dest lines directly |
| * and keep track if the source needs to be writable */ |
| for (cache = convert->pack_lines[i]; cache; cache = cache->prev) { |
| gst_line_cache_set_alloc_line_func (cache, alloc_line, user_data, notify); |
| cache->alloc_writable = alloc_writable; |
| n_lines = MAX (n_lines, cache->n_lines); |
| |
| /* make sure only one cache frees the allocator */ |
| notify = NULL; |
| |
| if (!cache->pass_alloc) { |
| /* can't pass allocator, make new temp line allocator */ |
| user_data = |
| converter_alloc_new (sizeof (guint16) * width * 4, |
| n_lines + cache->backlog, convert, NULL); |
| notify = (GDestroyNotify) converter_alloc_free; |
| alloc_line = get_temp_line; |
| alloc_writable = FALSE; |
| n_lines = cache->n_lines; |
| } |
| /* if someone writes to the input, we need a writable line from the |
| * previous cache */ |
| if (cache->write_input) |
| alloc_writable = TRUE; |
| } |
| /* free leftover allocator */ |
| if (notify) |
| notify (user_data); |
| } |
| } |
| |
| static void |
| setup_borderline (GstVideoConverter * convert) |
| { |
| gint width; |
| |
| width = MAX (convert->in_maxwidth, convert->out_maxwidth); |
| width += convert->out_x; |
| |
| if (convert->fill_border && (convert->out_height < convert->out_maxheight || |
| convert->out_width < convert->out_maxwidth)) { |
| guint32 border_val; |
| gint i, w_sub; |
| const GstVideoFormatInfo *out_finfo; |
| gpointer planes[GST_VIDEO_MAX_PLANES]; |
| gint strides[GST_VIDEO_MAX_PLANES]; |
| |
| convert->borderline = g_malloc0 (sizeof (guint16) * width * 4); |
| |
| out_finfo = convert->out_info.finfo; |
| |
| if (GST_VIDEO_INFO_IS_YUV (&convert->out_info)) { |
| MatrixData cm; |
| gint a, r, g, b; |
| gint y, u, v; |
| |
| /* Get Color matrix. */ |
| color_matrix_set_identity (&cm); |
| compute_matrix_to_YUV (convert, &cm, TRUE); |
| color_matrix_convert (&cm); |
| |
| border_val = GINT32_FROM_BE (convert->border_argb); |
| |
| b = (0xFF000000 & border_val) >> 24; |
| g = (0x00FF0000 & border_val) >> 16; |
| r = (0x0000FF00 & border_val) >> 8; |
| a = (0x000000FF & border_val); |
| |
| y = 16 + ((r * cm.im[0][0] + g * cm.im[0][1] + b * cm.im[0][2]) >> 8); |
| u = 128 + ((r * cm.im[1][0] + g * cm.im[1][1] + b * cm.im[1][2]) >> 8); |
| v = 128 + ((r * cm.im[2][0] + g * cm.im[2][1] + b * cm.im[2][2]) >> 8); |
| |
| a = CLAMP (a, 0, 255); |
| y = CLAMP (y, 0, 255); |
| u = CLAMP (u, 0, 255); |
| v = CLAMP (v, 0, 255); |
| |
| border_val = a | (y << 8) | (u << 16) | ((guint32) v << 24); |
| } else { |
| border_val = GINT32_FROM_BE (convert->border_argb); |
| } |
| if (convert->pack_bits == 8) |
| video_orc_splat_u32 (convert->borderline, border_val, width); |
| else |
| video_orc_splat2_u64 (convert->borderline, border_val, width); |
| |
| /* convert pixels */ |
| for (i = 0; i < out_finfo->n_planes; i++) { |
| planes[i] = &convert->borders[i]; |
| strides[i] = sizeof (guint64); |
| } |
| w_sub = 0; |
| if (out_finfo->n_planes == 1) { |
| /* for packed formats, convert based on subsampling so that we |
| * get a complete group of pixels */ |
| for (i = 0; i < out_finfo->n_components; i++) { |
| w_sub = MAX (w_sub, out_finfo->w_sub[i]); |
| } |
| } |
| out_finfo->pack_func (out_finfo, GST_VIDEO_PACK_FLAG_NONE, |
| convert->borderline, 0, planes, strides, |
| GST_VIDEO_CHROMA_SITE_UNKNOWN, 0, 1 << w_sub); |
| } else { |
| convert->borderline = NULL; |
| } |
| } |
| |
| static AlphaMode |
| convert_get_alpha_mode (GstVideoConverter * convert) |
| { |
| gboolean in_alpha, out_alpha; |
| |
| in_alpha = GST_VIDEO_INFO_HAS_ALPHA (&convert->in_info); |
| out_alpha = GST_VIDEO_INFO_HAS_ALPHA (&convert->out_info); |
| |
| /* no output alpha, do nothing */ |
| if (!out_alpha) |
| return ALPHA_MODE_NONE; |
| |
| if (in_alpha) { |
| /* in and out */ |
| if (CHECK_ALPHA_COPY (convert)) |
| return ALPHA_MODE_COPY; |
| |
| if (CHECK_ALPHA_MULT (convert)) { |
| if (GET_OPT_ALPHA_VALUE (convert) == 1.0) |
| return ALPHA_MODE_COPY; |
| else |
| return ALPHA_MODE_MULT; |
| } |
| } |
| /* nothing special, this is what unpack etc does automatically */ |
| if (GET_OPT_ALPHA_VALUE (convert) == 1.0) |
| return ALPHA_MODE_NONE; |
| |
| /* everything else becomes SET */ |
| return ALPHA_MODE_SET; |
| } |
| |
| /** |
| * gst_video_converter_new: (skip) |
| * @in_info: a #GstVideoInfo |
| * @out_info: a #GstVideoInfo |
| * @config: (transfer full): a #GstStructure with configuration options |
| * |
| * Create a new converter object to convert between @in_info and @out_info |
| * with @config. |
| * |
| * Returns: a #GstVideoConverter or %NULL if conversion is not possible. |
| * |
| * Since: 1.6 |
| */ |
| GstVideoConverter * |
| gst_video_converter_new (GstVideoInfo * in_info, GstVideoInfo * out_info, |
| GstStructure * config) |
| { |
| GstVideoConverter *convert; |
| GstLineCache *prev; |
| const GstVideoFormatInfo *fin, *fout, *finfo; |
| gdouble alpha_value; |
| gint n_threads, i; |
| |
| g_return_val_if_fail (in_info != NULL, NULL); |
| g_return_val_if_fail (out_info != NULL, NULL); |
| /* we won't ever do framerate conversion */ |
| g_return_val_if_fail (in_info->fps_n == out_info->fps_n, NULL); |
| g_return_val_if_fail (in_info->fps_d == out_info->fps_d, NULL); |
| /* we won't ever do deinterlace */ |
| g_return_val_if_fail (in_info->interlace_mode == out_info->interlace_mode, |
| NULL); |
| |
| convert = g_slice_new0 (GstVideoConverter); |
| |
| fin = in_info->finfo; |
| fout = out_info->finfo; |
| |
| convert->in_info = *in_info; |
| convert->out_info = *out_info; |
| |
| /* default config */ |
| convert->config = gst_structure_new_empty ("GstVideoConverter"); |
| if (config) |
| gst_video_converter_set_config (convert, config); |
| |
| convert->in_maxwidth = GST_VIDEO_INFO_WIDTH (in_info); |
| convert->in_maxheight = GST_VIDEO_INFO_HEIGHT (in_info); |
| convert->out_maxwidth = GST_VIDEO_INFO_WIDTH (out_info); |
| convert->out_maxheight = GST_VIDEO_INFO_HEIGHT (out_info); |
| |
| convert->in_x = get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_SRC_X, 0); |
| convert->in_y = get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_SRC_Y, 0); |
| convert->in_x &= ~((1 << fin->w_sub[1]) - 1); |
| convert->in_y &= ~((1 << fin->h_sub[1]) - 1); |
| |
| convert->in_width = get_opt_int (convert, |
| GST_VIDEO_CONVERTER_OPT_SRC_WIDTH, convert->in_maxwidth - convert->in_x); |
| convert->in_height = get_opt_int (convert, |
| GST_VIDEO_CONVERTER_OPT_SRC_HEIGHT, |
| convert->in_maxheight - convert->in_y); |
| |
| convert->in_width = |
| MIN (convert->in_width, convert->in_maxwidth - convert->in_x); |
| convert->in_height = |
| MIN (convert->in_height, convert->in_maxheight - convert->in_y); |
| |
| convert->out_x = get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_DEST_X, 0); |
| convert->out_y = get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_DEST_Y, 0); |
| convert->out_x &= ~((1 << fout->w_sub[1]) - 1); |
| convert->out_y &= ~((1 << fout->h_sub[1]) - 1); |
| |
| convert->out_width = get_opt_int (convert, |
| GST_VIDEO_CONVERTER_OPT_DEST_WIDTH, |
| convert->out_maxwidth - convert->out_x); |
| convert->out_height = |
| get_opt_int (convert, GST_VIDEO_CONVERTER_OPT_DEST_HEIGHT, |
| convert->out_maxheight - convert->out_y); |
| |
| convert->out_width = |
| MIN (convert->out_width, convert->out_maxwidth - convert->out_x); |
| convert->out_height = |
| MIN (convert->out_height, convert->out_maxheight - convert->out_y); |
| |
| convert->fill_border = GET_OPT_FILL_BORDER (convert); |
| convert->border_argb = get_opt_uint (convert, |
| GST_VIDEO_CONVERTER_OPT_BORDER_ARGB, DEFAULT_OPT_BORDER_ARGB); |
| |
| alpha_value = GET_OPT_ALPHA_VALUE (convert); |
| convert->alpha_value = 255 * alpha_value; |
| convert->alpha_mode = convert_get_alpha_mode (convert); |
| |
| convert->unpack_format = in_info->finfo->unpack_format; |
| finfo = gst_video_format_get_info (convert->unpack_format); |
| convert->unpack_bits = GST_VIDEO_FORMAT_INFO_DEPTH (finfo, 0); |
| convert->unpack_rgb = GST_VIDEO_FORMAT_INFO_IS_RGB (finfo); |
| if (convert->unpack_rgb |
| && in_info->colorimetry.matrix != GST_VIDEO_COLOR_MATRIX_RGB) { |
| /* force identity matrix for RGB input */ |
| GST_WARNING ("invalid matrix %d for input RGB format, using RGB", |
| in_info->colorimetry.matrix); |
| convert->in_info.colorimetry.matrix = GST_VIDEO_COLOR_MATRIX_RGB; |
| } |
| |
| convert->pack_format = out_info->finfo->unpack_format; |
| finfo = gst_video_format_get_info (convert->pack_format); |
| convert->pack_bits = GST_VIDEO_FORMAT_INFO_DEPTH (finfo, 0); |
| convert->pack_rgb = GST_VIDEO_FORMAT_INFO_IS_RGB (finfo); |
| convert->pack_pal = |
| gst_video_format_get_palette (GST_VIDEO_INFO_FORMAT (out_info), |
| &convert->pack_palsize); |
| if (convert->pack_rgb |
| && out_info->colorimetry.matrix != GST_VIDEO_COLOR_MATRIX_RGB) { |
| /* force identity matrix for RGB output */ |
| GST_WARNING ("invalid matrix %d for output RGB format, using RGB", |
| out_info->colorimetry.matrix); |
| convert->out_info.colorimetry.matrix = GST_VIDEO_COLOR_MATRIX_RGB; |
| } |
| |
| n_threads = get_opt_uint (convert, GST_VIDEO_CONVERTER_OPT_THREADS, 1); |
| if (n_threads == 0 || n_threads > g_get_num_processors ()) |
| n_threads = g_get_num_processors (); |
| /* Magic number of 200 lines */ |
| if (MAX (convert->out_height, convert->in_height) / n_threads < 200) |
| n_threads = (MAX (convert->out_height, convert->in_height) + 199) / 200; |
| convert->conversion_runner = gst_parallelized_task_runner_new (n_threads); |
| |
| if (video_converter_lookup_fastpath (convert)) |
| goto done; |
| |
| if (in_info->finfo->unpack_func == NULL) |
| goto no_unpack_func; |
| |
| if (out_info->finfo->pack_func == NULL) |
| goto no_pack_func; |
| |
| convert->convert = video_converter_generic; |
| |
| convert->upsample_p = g_new0 (GstVideoChromaResample *, n_threads); |
| convert->upsample_i = g_new0 (GstVideoChromaResample *, n_threads); |
| convert->downsample_p = g_new0 (GstVideoChromaResample *, n_threads); |
| convert->downsample_i = g_new0 (GstVideoChromaResample *, n_threads); |
| convert->v_scaler_p = g_new0 (GstVideoScaler *, n_threads); |
| convert->v_scaler_i = g_new0 (GstVideoScaler *, n_threads); |
| convert->h_scaler = g_new0 (GstVideoScaler *, n_threads); |
| convert->unpack_lines = g_new0 (GstLineCache *, n_threads); |
| convert->pack_lines = g_new0 (GstLineCache *, n_threads); |
| convert->upsample_lines = g_new0 (GstLineCache *, n_threads); |
| convert->to_RGB_lines = g_new0 (GstLineCache *, n_threads); |
| convert->hscale_lines = g_new0 (GstLineCache *, n_threads); |
| convert->vscale_lines = g_new0 (GstLineCache *, n_threads); |
| convert->convert_lines = g_new0 (GstLineCache *, n_threads); |
| convert->alpha_lines = g_new0 (GstLineCache *, n_threads); |
| convert->to_YUV_lines = g_new0 (GstLineCache *, n_threads); |
| convert->downsample_lines = g_new0 (GstLineCache *, n_threads); |
| convert->dither_lines = g_new0 (GstLineCache *, n_threads); |
| convert->dither = g_new0 (GstVideoDither *, n_threads); |
| |
| for (i = 0; i < n_threads; i++) { |
| convert->current_format = GST_VIDEO_INFO_FORMAT (in_info); |
| convert->current_width = convert->in_width; |
| convert->current_height = convert->in_height; |
| |
| /* unpack */ |
| prev = chain_unpack_line (convert, i); |
| /* upsample chroma */ |
| prev = chain_upsample (convert, prev, i); |
| /* convert to gamma decoded RGB */ |
| prev = chain_convert_to_RGB (convert, prev, i); |
| /* do all downscaling */ |
| prev = chain_scale (convert, prev, FALSE, i); |
| /* do conversion between color spaces */ |
| prev = chain_convert (convert, prev, i); |
| /* do alpha channels */ |
| prev = chain_alpha (convert, prev, i); |
| /* do all remaining (up)scaling */ |
| prev = chain_scale (convert, prev, TRUE, i); |
| /* convert to gamma encoded Y'Cb'Cr' */ |
| prev = chain_convert_to_YUV (convert, prev, i); |
| /* downsample chroma */ |
| prev = chain_downsample (convert, prev, i); |
| /* dither */ |
| prev = chain_dither (convert, prev, i); |
| /* pack into final format */ |
| convert->pack_lines[i] = chain_pack (convert, prev, i); |
| } |
| |
| setup_borderline (convert); |
| /* now figure out allocators */ |
| setup_allocators (convert); |
| |
| done: |
| return convert; |
| |
| /* ERRORS */ |
| no_unpack_func: |
| { |
| GST_ERROR ("no unpack_func for format %s", |
| gst_video_format_to_string (GST_VIDEO_INFO_FORMAT (in_info))); |
| gst_video_converter_free (convert); |
| return NULL; |
| } |
| no_pack_func: |
| { |
| GST_ERROR ("no pack_func for format %s", |
| gst_video_format_to_string (GST_VIDEO_INFO_FORMAT (out_info))); |
| gst_video_converter_free (convert); |
| return NULL; |
| } |
| } |
| |
| static void |
| clear_matrix_data (MatrixData * data) |
| { |
| g_free (data->t_r); |
| g_free (data->t_g); |
| g_free (data->t_b); |
| } |
| |
| /** |
| * gst_video_converter_free: |
| * @convert: a #GstVideoConverter |
| * |
| * Free @convert |
| * |
| * Since: 1.6 |
| */ |
| void |
| gst_video_converter_free (GstVideoConverter * convert) |
| { |
| guint i, j; |
| |
| g_return_if_fail (convert != NULL); |
| |
| for (i = 0; i < convert->conversion_runner->n_threads; i++) { |
| if (convert->upsample_p && convert->upsample_p[i]) |
| gst_video_chroma_resample_free (convert->upsample_p[i]); |
| if (convert->upsample_i && convert->upsample_i[i]) |
| gst_video_chroma_resample_free (convert->upsample_i[i]); |
| if (convert->downsample_p && convert->downsample_p[i]) |
| gst_video_chroma_resample_free (convert->downsample_p[i]); |
| if (convert->downsample_i && convert->downsample_i[i]) |
| gst_video_chroma_resample_free (convert->downsample_i[i]); |
| if (convert->v_scaler_p && convert->v_scaler_p[i]) |
| gst_video_scaler_free (convert->v_scaler_p[i]); |
| if (convert->v_scaler_i && convert->v_scaler_i[i]) |
| gst_video_scaler_free (convert->v_scaler_i[i]); |
| if (convert->h_scaler && convert->h_scaler[i]) |
| gst_video_scaler_free (convert->h_scaler[i]); |
| if (convert->unpack_lines && convert->unpack_lines[i]) |
| gst_line_cache_free (convert->unpack_lines[i]); |
| if (convert->upsample_lines && convert->upsample_lines[i]) |
| gst_line_cache_free (convert->upsample_lines[i]); |
| if (convert->to_RGB_lines && convert->to_RGB_lines[i]) |
| gst_line_cache_free (convert->to_RGB_lines[i]); |
| if (convert->hscale_lines && convert->hscale_lines[i]) |
| gst_line_cache_free (convert->hscale_lines[i]); |
| if (convert->vscale_lines && convert->vscale_lines[i]) |
| gst_line_cache_free (convert->vscale_lines[i]); |
| if (convert->convert_lines && convert->convert_lines[i]) |
| gst_line_cache_free (convert->convert_lines[i]); |
| if (convert->alpha_lines && convert->alpha_lines[i]) |
| gst_line_cache_free (convert->alpha_lines[i]); |
| if (convert->to_YUV_lines && convert->to_YUV_lines[i]) |
| gst_line_cache_free (convert->to_YUV_lines[i]); |
| if (convert->downsample_lines && convert->downsample_lines[i]) |
| gst_line_cache_free (convert->downsample_lines[i]); |
| if (convert->dither_lines && convert->dither_lines[i]) |
| gst_line_cache_free (convert->dither_lines[i]); |
| if (convert->dither && convert->dither[i]) |
| gst_video_dither_free (convert->dither[i]); |
| } |
| g_free (convert->upsample_p); |
| g_free (convert->upsample_i); |
| g_free (convert->downsample_p); |
| g_free (convert->downsample_i); |
| g_free (convert->v_scaler_p); |
| g_free (convert->v_scaler_i); |
| g_free (convert->h_scaler); |
| g_free (convert->unpack_lines); |
| g_free (convert->pack_lines); |
| g_free (convert->upsample_lines); |
| g_free (convert->to_RGB_lines); |
| g_free (convert->hscale_lines); |
| g_free (convert->vscale_lines); |
| g_free (convert->convert_lines); |
| g_free (convert->alpha_lines); |
| g_free (convert->to_YUV_lines); |
| g_free (convert->downsample_lines); |
| g_free (convert->dither_lines); |
| g_free (convert->dither); |
| |
| g_free (convert->gamma_dec.gamma_table); |
| g_free (convert->gamma_enc.gamma_table); |
| |
| if (convert->tmpline) { |
| for (i = 0; i < convert->conversion_runner->n_threads; i++) |
| g_free (convert->tmpline[i]); |
| g_free (convert->tmpline); |
| } |
| |
| g_free (convert->borderline); |
| |
| if (convert->config) |
| gst_structure_free (convert->config); |
| |
| for (i = 0; i < 4; i++) { |
| for (j = 0; j < convert->conversion_runner->n_threads; j++) { |
| if (convert->fv_scaler[i].scaler) |
| gst_video_scaler_free (convert->fv_scaler[i].scaler[j]); |
| if (convert->fh_scaler[i].scaler) |
| gst_video_scaler_free (convert->fh_scaler[i].scaler[j]); |
| } |
| g_free (convert->fv_scaler[i].scaler); |
| g_free (convert->fh_scaler[i].scaler); |
| } |
| |
| if (convert->conversion_runner) |
| gst_parallelized_task_runner_free (convert->conversion_runner); |
| |
| clear_matrix_data (&convert->to_RGB_matrix); |
| clear_matrix_data (&convert->convert_matrix); |
| clear_matrix_data (&convert->to_YUV_matrix); |
| |
| g_slice_free (GstVideoConverter, convert); |
| } |
| |
| static gboolean |
| copy_config (GQuark field_id, const GValue * value, gpointer user_data) |
| { |
| GstVideoConverter *convert = user_data; |
| |
| gst_structure_id_set_value (convert->config, field_id, value); |
| |
| return TRUE; |
| } |
| |
| /** |
| * gst_video_converter_set_config: |
| * @convert: a #GstVideoConverter |
| * @config: (transfer full): a #GstStructure |
| * |
| * Set @config as extra configuraion for @convert. |
| * |
| * If the parameters in @config can not be set exactly, this function returns |
| * %FALSE and will try to update as much state as possible. The new state can |
| * then be retrieved and refined with gst_video_converter_get_config(). |
| * |
| * Look at the #GST_VIDEO_CONVERTER_OPT_* fields to check valid configuration |
| * option and values. |
| * |
| * Returns: %TRUE when @config could be set. |
| * |
| * Since: 1.6 |
| */ |
| gboolean |
| gst_video_converter_set_config (GstVideoConverter * convert, |
| GstStructure * config) |
| { |
| g_return_val_if_fail (convert != NULL, FALSE); |
| g_return_val_if_fail (config != NULL, FALSE); |
| |
| gst_structure_foreach (config, copy_config, convert); |
| gst_structure_free (config); |
| |
| return TRUE; |
| } |
| |
| /** |
| * gst_video_converter_get_config: |
| * @convert: a #GstVideoConverter |
| * |
| * Get the current configuration of @convert. |
| * |
| * Returns: a #GstStructure that remains valid for as long as @convert is valid |
| * or until gst_video_converter_set_config() is called. |
| */ |
| const GstStructure * |
| gst_video_converter_get_config (GstVideoConverter * convert) |
| { |
| g_return_val_if_fail (convert != NULL, NULL); |
| |
| return convert->config; |
| } |
| |
| /** |
| * gst_video_converter_frame: |
| * @convert: a #GstVideoConverter |
| * @dest: a #GstVideoFrame |
| * @src: a #GstVideoFrame |
| * |
| * Convert the pixels of @src into @dest using @convert. |
| * |
| * Since: 1.6 |
| */ |
| void |
| gst_video_converter_frame (GstVideoConverter * convert, |
| const GstVideoFrame * src, GstVideoFrame * dest) |
| { |
| g_return_if_fail (convert != NULL); |
| g_return_if_fail (src != NULL); |
| g_return_if_fail (dest != NULL); |
| |
| convert->convert (convert, src, dest); |
| } |
| |
| static void |
| video_converter_compute_matrix (GstVideoConverter * convert) |
| { |
| MatrixData *dst = &convert->convert_matrix; |
| |
| color_matrix_set_identity (dst); |
| compute_matrix_to_RGB (convert, dst); |
| compute_matrix_to_YUV (convert, dst, FALSE); |
| |
| convert->current_bits = 8; |
| prepare_matrix (convert, dst); |
| } |
| |
| static void |
| video_converter_compute_resample (GstVideoConverter * convert, gint idx) |
| { |
| GstVideoInfo *in_info, *out_info; |
| const GstVideoFormatInfo *sfinfo, *dfinfo; |
| |
| if (CHECK_CHROMA_NONE (convert)) |
| return; |
| |
| in_info = &convert->in_info; |
| out_info = &convert->out_info; |
| |
| sfinfo = in_info->finfo; |
| dfinfo = out_info->finfo; |
| |
| GST_DEBUG ("site: %d->%d, w_sub: %d->%d, h_sub: %d->%d", in_info->chroma_site, |
| out_info->chroma_site, sfinfo->w_sub[2], dfinfo->w_sub[2], |
| sfinfo->h_sub[2], dfinfo->h_sub[2]); |
| |
| if (sfinfo->w_sub[2] != dfinfo->w_sub[2] || |
| sfinfo->h_sub[2] != dfinfo->h_sub[2] || |
| in_info->chroma_site != out_info->chroma_site || |
| in_info->width != out_info->width || |
| in_info->height != out_info->height) { |
| if (GST_VIDEO_INFO_IS_INTERLACED (in_info)) { |
| if (!CHECK_CHROMA_DOWNSAMPLE (convert)) |
| convert->upsample_i[idx] = gst_video_chroma_resample_new (0, |
| in_info->chroma_site, GST_VIDEO_CHROMA_FLAG_INTERLACED, |
| sfinfo->unpack_format, sfinfo->w_sub[2], sfinfo->h_sub[2]); |
| if (!CHECK_CHROMA_UPSAMPLE (convert)) |
| convert->downsample_i[idx] = |
| gst_video_chroma_resample_new (0, out_info->chroma_site, |
| GST_VIDEO_CHROMA_FLAG_INTERLACED, dfinfo->unpack_format, |
| -dfinfo->w_sub[2], -dfinfo->h_sub[2]); |
| } |
| if (!CHECK_CHROMA_DOWNSAMPLE (convert)) |
| convert->upsample_p[idx] = gst_video_chroma_resample_new (0, |
| in_info->chroma_site, 0, sfinfo->unpack_format, sfinfo->w_sub[2], |
| sfinfo->h_sub[2]); |
| if (!CHECK_CHROMA_UPSAMPLE (convert)) |
| convert->downsample_p[idx] = gst_video_chroma_resample_new (0, |
| out_info->chroma_site, 0, dfinfo->unpack_format, -dfinfo->w_sub[2], |
| -dfinfo->h_sub[2]); |
| } |
| } |
| |
| #define FRAME_GET_PLANE_STRIDE(frame, plane) \ |
| GST_VIDEO_FRAME_PLANE_STRIDE (frame, plane) |
| #define FRAME_GET_PLANE_LINE(frame, plane, line) \ |
| (gpointer)(((guint8*)(GST_VIDEO_FRAME_PLANE_DATA (frame, plane))) + \ |
| FRAME_GET_PLANE_STRIDE (frame, plane) * (line)) |
| |
| #define FRAME_GET_COMP_STRIDE(frame, comp) \ |
| GST_VIDEO_FRAME_COMP_STRIDE (frame, comp) |
| #define FRAME_GET_COMP_LINE(frame, comp, line) \ |
| (gpointer)(((guint8*)(GST_VIDEO_FRAME_COMP_DATA (frame, comp))) + \ |
| FRAME_GET_COMP_STRIDE (frame, comp) * (line)) |
| |
| #define FRAME_GET_STRIDE(frame) FRAME_GET_PLANE_STRIDE (frame, 0) |
| #define FRAME_GET_LINE(frame,line) FRAME_GET_PLANE_LINE (frame, 0, line) |
| |
| #define FRAME_GET_Y_LINE(frame,line) FRAME_GET_COMP_LINE(frame, GST_VIDEO_COMP_Y, line) |
| #define FRAME_GET_U_LINE(frame,line) FRAME_GET_COMP_LINE(frame, GST_VIDEO_COMP_U, line) |
| #define FRAME_GET_V_LINE(frame,line) FRAME_GET_COMP_LINE(frame, GST_VIDEO_COMP_V, line) |
| #define FRAME_GET_A_LINE(frame,line) FRAME_GET_COMP_LINE(frame, GST_VIDEO_COMP_A, line) |
| |
| #define FRAME_GET_Y_STRIDE(frame) FRAME_GET_COMP_STRIDE(frame, GST_VIDEO_COMP_Y) |
| #define FRAME_GET_U_STRIDE(frame) FRAME_GET_COMP_STRIDE(frame, GST_VIDEO_COMP_U) |
| #define FRAME_GET_V_STRIDE(frame) FRAME_GET_COMP_STRIDE(frame, GST_VIDEO_COMP_V) |
| #define FRAME_GET_A_STRIDE(frame) FRAME_GET_COMP_STRIDE(frame, GST_VIDEO_COMP_A) |
| |
| |
| #define UNPACK_FRAME(frame,dest,line,x,width) \ |
| frame->info.finfo->unpack_func (frame->info.finfo, \ |
| (GST_VIDEO_FRAME_IS_INTERLACED (frame) ? \ |
| GST_VIDEO_PACK_FLAG_INTERLACED : \ |
| GST_VIDEO_PACK_FLAG_NONE), \ |
| dest, frame->data, frame->info.stride, x, \ |
| line, width) |
| #define PACK_FRAME(frame,src,line,width) \ |
| frame->info.finfo->pack_func (frame->info.finfo, \ |
| (GST_VIDEO_FRAME_IS_INTERLACED (frame) ? \ |
| GST_VIDEO_PACK_FLAG_INTERLACED : \ |
| GST_VIDEO_PACK_FLAG_NONE), \ |
| src, 0, frame->data, frame->info.stride, \ |
| frame->info.chroma_site, line, width); |
| |
| static gpointer |
| get_dest_line (GstLineCache * cache, gint idx, gpointer user_data) |
| { |
| GstVideoConverter *convert = user_data; |
| guint8 *line; |
| gint pstride = convert->pack_pstride; |
| gint out_x = convert->out_x; |
| guint cline; |
| |
| cline = CLAMP (idx, 0, convert->out_maxheight - 1); |
| |
| line = FRAME_GET_LINE (convert->dest, cline); |
| GST_DEBUG ("get dest line %d %p", cline, line); |
| |
| if (convert->borderline) { |
| gint r_border = (out_x + convert->out_width) * pstride; |
| gint rb_width = convert->out_maxwidth * pstride - r_border; |
| gint lb_width = out_x * pstride; |
| |
| memcpy (line, convert->borderline, lb_width); |
| memcpy (line + r_border, convert->borderline, rb_width); |
| } |
| line += out_x * pstride; |
| |
| return line; |
| } |
| |
| static gboolean |
| do_unpack_lines (GstLineCache * cache, gint idx, gint out_line, gint in_line, |
| gpointer user_data) |
| { |
| GstVideoConverter *convert = user_data; |
| gpointer tmpline; |
| guint cline; |
| |
| cline = CLAMP (in_line + convert->in_y, 0, convert->in_maxheight - 1); |
| |
| if (cache->alloc_writable || !convert->identity_unpack) { |
| tmpline = gst_line_cache_alloc_line (cache, out_line); |
| GST_DEBUG ("unpack line %d (%u) %p", in_line, cline, tmpline); |
| UNPACK_FRAME (convert->src, tmpline, cline, convert->in_x, |
| convert->in_width); |
| } else { |
| tmpline = ((guint8 *) FRAME_GET_LINE (convert->src, cline)) + |
| convert->in_x * convert->unpack_pstride; |
| GST_DEBUG ("get src line %d (%u) %p", in_line, cline, tmpline); |
| } |
| gst_line_cache_add_line (cache, in_line, |