2010-01-30 17:57:40 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#ifndef MPLAYER_MP_IMAGE_H
|
|
|
|
#define MPLAYER_MP_IMAGE_H
|
2002-01-16 01:14:59 +01:00
|
|
|
|
2012-12-12 00:43:36 +01:00
|
|
|
#include <stdbool.h>
|
2008-03-06 09:34:50 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-10-27 17:59:16 +02:00
|
|
|
#include <inttypes.h>
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "core/mp_msg.h"
|
|
|
|
#include "csputils.h"
|
2008-03-06 09:34:50 +01:00
|
|
|
|
2012-11-22 19:22:38 +01:00
|
|
|
// Minimum stride alignment in pixels
|
|
|
|
#define MP_STRIDE_ALIGNMENT 32
|
|
|
|
|
2002-08-03 00:55:54 +02:00
|
|
|
//--------- color info (filled by mp_image_setfmt() ) -----------
|
2002-01-16 01:14:59 +01:00
|
|
|
// set if number of planes > 1
|
2002-02-28 01:53:01 +01:00
|
|
|
#define MP_IMGFLAG_PLANAR 0x100
|
2002-01-16 01:14:59 +01:00
|
|
|
// set if it's YUV colorspace
|
2002-02-28 01:53:01 +01:00
|
|
|
#define MP_IMGFLAG_YUV 0x200
|
2002-08-03 00:55:54 +02:00
|
|
|
// set if it's swapped (BGR or YVU) plane/byteorder
|
2002-02-28 01:53:01 +01:00
|
|
|
#define MP_IMGFLAG_SWAPPED 0x400
|
2009-12-26 12:51:19 +01:00
|
|
|
// set if you want memory for palette allocated and managed by vf_get_image etc.
|
2002-08-03 00:55:54 +02:00
|
|
|
#define MP_IMGFLAG_RGB_PALETTE 0x800
|
|
|
|
|
|
|
|
|
|
|
|
// set if buffer is allocated (used in destination images):
|
|
|
|
#define MP_IMGFLAG_ALLOCATED 0x4000
|
|
|
|
|
2002-06-23 22:42:19 +02:00
|
|
|
#define MP_MAX_PLANES 4
|
|
|
|
|
2003-08-18 16:49:06 +02:00
|
|
|
#define MP_IMGFIELD_ORDERED 0x01
|
|
|
|
#define MP_IMGFIELD_TOP_FIRST 0x02
|
|
|
|
#define MP_IMGFIELD_REPEAT_FIRST 0x04
|
|
|
|
#define MP_IMGFIELD_TOP 0x08
|
|
|
|
#define MP_IMGFIELD_BOTTOM 0x10
|
2003-12-22 18:26:19 +01:00
|
|
|
#define MP_IMGFIELD_INTERLACED 0x20
|
2003-08-03 14:09:58 +02:00
|
|
|
|
2012-12-12 00:43:36 +01:00
|
|
|
/* Memory management:
|
|
|
|
* - mp_image is a light-weight reference to the actual image data (pixels).
|
|
|
|
* The actual image data is reference counted and can outlive mp_image
|
|
|
|
* allocations. mp_image references can be created with mp_image_new_ref()
|
|
|
|
* and free'd with talloc_free() (the helpers mp_image_setrefp() and
|
|
|
|
* mp_image_unrefp() can also be used). The actual image data is free'd when
|
|
|
|
* the last mp_image reference to it is free'd.
|
|
|
|
* - Each mp_image has a clear owner. The owner can do anything with it, such
|
|
|
|
* as changing mp_image fields. Instead of making ownership ambiguous by
|
|
|
|
* sharing a mp_image reference, new references should be created.
|
|
|
|
* - Write access to the actual image data is allowed only after calling
|
|
|
|
* mp_image_make_writeable(), or if mp_image_is_writeable() returns true.
|
|
|
|
* Conceptually, images can be changed by their owner only, and copy-on-write
|
|
|
|
* is used to ensure that other references do not see any changes to the
|
|
|
|
* image data. mp_image_make_writeable() will do that copy if required.
|
|
|
|
*/
|
2008-04-24 04:49:44 +02:00
|
|
|
typedef struct mp_image {
|
2009-02-14 09:22:49 +01:00
|
|
|
unsigned int flags;
|
2002-01-16 02:19:22 +01:00
|
|
|
unsigned char bpp; // bits/pixel. NOT depth! for RGB it will be n*8
|
2002-01-16 01:14:59 +01:00
|
|
|
unsigned int imgfmt;
|
2012-02-24 15:25:22 +01:00
|
|
|
int w,h; // visible dimensions
|
2012-10-26 20:19:06 +02:00
|
|
|
int display_w,display_h; // if set (!= 0), anamorphic size
|
2012-10-27 17:59:16 +02:00
|
|
|
uint8_t *planes[MP_MAX_PLANES];
|
2005-02-24 17:52:18 +01:00
|
|
|
int stride[MP_MAX_PLANES];
|
2002-10-30 21:50:33 +01:00
|
|
|
char * qscale;
|
2002-01-16 01:14:59 +01:00
|
|
|
int qstride;
|
2002-10-29 12:26:26 +01:00
|
|
|
int pict_type; // 0->unknown, 1->I, 2->P, 3->B
|
2003-08-18 16:49:06 +02:00
|
|
|
int fields;
|
2003-04-18 15:18:59 +02:00
|
|
|
int qscale_type; // 0->mpeg1/4/h263, 1->mpeg2
|
2002-06-23 22:42:19 +02:00
|
|
|
int num_planes;
|
|
|
|
/* these are only used by planar formats Y,U(Cb),V(Cr) */
|
|
|
|
int chroma_width;
|
|
|
|
int chroma_height;
|
2002-06-23 23:08:31 +02:00
|
|
|
int chroma_x_shift; // horizontal
|
|
|
|
int chroma_y_shift; // vertical
|
2012-10-27 18:01:51 +02:00
|
|
|
enum mp_csp colorspace;
|
|
|
|
enum mp_csp_levels levels;
|
video/filter: change filter API, use refcounting, remove filter DR
Change the entire filter API to use reference counted images instead
of vf_get_image().
Remove filter "direct rendering". This was useful for vf_expand and (in
rare cases) vf_sub: DR allowed these filters to pass a cropped image to
the filters before them. Then, on filtering, the image was "uncropped",
so that black bars could be added around the image without copying. This
means that in some cases, vf_expand will be slower (-vf gradfun,expand
for example).
Note that another form of DR used for in-place filters has been replaced
by simpler logic. Instead of trying to do DR, filters can check if the
image is writeable (with mp_image_is_writeable()), and do true in-place
if that's the case. This affects filters like vf_gradfun and vf_sub.
Everything has to support strides now. If something doesn't, making a
copy of the image data is required.
2012-11-05 14:25:04 +01:00
|
|
|
/* only inside filter chain */
|
|
|
|
double pts;
|
2012-12-12 00:43:36 +01:00
|
|
|
/* memory management */
|
|
|
|
struct m_refcount *refcount;
|
2012-12-12 23:55:41 +01:00
|
|
|
/* for private use */
|
2002-07-20 18:26:49 +02:00
|
|
|
void* priv;
|
2002-01-16 01:14:59 +01:00
|
|
|
} mp_image_t;
|
|
|
|
|
2012-12-12 00:43:36 +01:00
|
|
|
#define alloc_mpi(w, h, fmt) mp_image_alloc(fmt, w, h)
|
|
|
|
#define free_mp_image talloc_free
|
|
|
|
#define new_mp_image mp_image_new_empty
|
|
|
|
#define copy_mpi mp_image_copy
|
|
|
|
|
|
|
|
struct mp_image *mp_image_alloc(unsigned int fmt, int w, int h);
|
|
|
|
void mp_image_copy(struct mp_image *dmpi, struct mp_image *mpi);
|
|
|
|
void mp_image_copy_attributes(struct mp_image *dmpi, struct mp_image *mpi);
|
|
|
|
struct mp_image *mp_image_new_copy(struct mp_image *img);
|
|
|
|
struct mp_image *mp_image_new_ref(struct mp_image *img);
|
|
|
|
bool mp_image_is_writeable(struct mp_image *img);
|
|
|
|
void mp_image_make_writeable(struct mp_image *img);
|
|
|
|
void mp_image_setrefp(struct mp_image **p_img, struct mp_image *new_value);
|
|
|
|
void mp_image_unrefp(struct mp_image **p_img);
|
|
|
|
|
2012-11-10 02:02:24 +01:00
|
|
|
void mp_image_set_size(struct mp_image *mpi, int w, int h);
|
|
|
|
void mp_image_set_display_size(struct mp_image *mpi, int dw, int dh);
|
|
|
|
|
2012-12-12 00:43:36 +01:00
|
|
|
struct mp_image *mp_image_new_empty(int w, int h);
|
2010-04-15 07:39:36 +02:00
|
|
|
void mp_image_setfmt(mp_image_t* mpi,unsigned int out_fmt);
|
2012-12-12 00:43:36 +01:00
|
|
|
void mp_image_alloc_planes(struct mp_image *mpi);
|
|
|
|
void mp_image_steal_data(struct mp_image *dst, struct mp_image *src);
|
|
|
|
|
|
|
|
struct mp_image *mp_image_new_custom_ref(struct mp_image *img, void *arg,
|
|
|
|
void (*free)(void *arg));
|
2002-04-21 00:24:19 +02:00
|
|
|
|
2012-12-12 00:43:36 +01:00
|
|
|
struct mp_image *mp_image_new_external_ref(struct mp_image *img, void *arg,
|
|
|
|
void (*ref)(void *arg),
|
|
|
|
void (*unref)(void *arg),
|
|
|
|
bool (*is_unique)(void *arg));
|
2007-08-05 00:12:49 +02:00
|
|
|
|
2012-10-27 18:01:51 +02:00
|
|
|
enum mp_csp mp_image_csp(struct mp_image *img);
|
|
|
|
enum mp_csp_levels mp_image_levels(struct mp_image *img);
|
|
|
|
|
|
|
|
struct mp_csp_details;
|
|
|
|
void mp_image_set_colorspace_details(struct mp_image *image,
|
|
|
|
struct mp_csp_details *csp);
|
|
|
|
|
2012-10-24 19:05:49 +02:00
|
|
|
// this macro requires img_format.h to be included too:
|
|
|
|
#define MP_IMAGE_PLANAR_BITS_PER_PIXEL_ON_PLANE(mpi, p) \
|
|
|
|
(IMGFMT_IS_YUVP16((mpi)->imgfmt) ? 16 : 8)
|
|
|
|
#define MP_IMAGE_BITS_PER_PIXEL_ON_PLANE(mpi, p) \
|
|
|
|
(((mpi)->flags & MP_IMGFLAG_PLANAR) \
|
|
|
|
? MP_IMAGE_PLANAR_BITS_PER_PIXEL_ON_PLANE(mpi, p) \
|
|
|
|
: (mpi)->bpp)
|
|
|
|
#define MP_IMAGE_BYTES_PER_ROW_ON_PLANE(mpi, p) \
|
|
|
|
((MP_IMAGE_BITS_PER_PIXEL_ON_PLANE(mpi, p) * ((mpi)->w >> (p ? mpi->chroma_x_shift : 0)) + 7) / 8)
|
|
|
|
|
2008-02-22 10:09:46 +01:00
|
|
|
#endif /* MPLAYER_MP_IMAGE_H */
|