Libav
|
Go to the source code of this file.
Data Structures | |
struct | AVComponentDescriptor |
struct | AVPixFmtDescriptor |
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes of an image. More... | |
Macros | |
#define | AV_PIX_FMT_FLAG_BE (1 << 0) |
Pixel format is big-endian. More... | |
#define | AV_PIX_FMT_FLAG_PAL (1 << 1) |
Pixel format has a palette in data[1], values are indexes in this palette. More... | |
#define | AV_PIX_FMT_FLAG_BITSTREAM (1 << 2) |
All values of a component are bit-wise packed end to end. More... | |
#define | AV_PIX_FMT_FLAG_HWACCEL (1 << 3) |
Pixel format is an HW accelerated format. More... | |
#define | AV_PIX_FMT_FLAG_PLANAR (1 << 4) |
At least one pixel component is not in the first data plane. More... | |
#define | AV_PIX_FMT_FLAG_RGB (1 << 5) |
The pixel format contains RGB-like data (as opposed to YUV/grayscale). More... | |
#define | AV_PIX_FMT_FLAG_PSEUDOPAL (1 << 6) |
The pixel format is "pseudo-paletted". More... | |
#define | AV_PIX_FMT_FLAG_ALPHA (1 << 7) |
The pixel format has an alpha channel. More... | |
Functions | |
void | av_read_image_line (uint16_t *dst, const uint8_t *data[4], const int linesize[4], const AVPixFmtDescriptor *desc, int x, int y, int c, int w, int read_pal_component) |
Read a line from an image, and write the values of the pixel format component c to dst. More... | |
void | av_write_image_line (const uint16_t *src, uint8_t *data[4], const int linesize[4], const AVPixFmtDescriptor *desc, int x, int y, int c, int w) |
Write the values from src to the pixel format component c of an image line. More... | |
enum AVPixelFormat | av_get_pix_fmt (const char *name) |
Return the pixel format corresponding to name. More... | |
const char * | av_get_pix_fmt_name (enum AVPixelFormat pix_fmt) |
Return the short name for a pixel format, NULL in case pix_fmt is unknown. More... | |
char * | av_get_pix_fmt_string (char *buf, int buf_size, enum AVPixelFormat pix_fmt) |
Print in buf the string corresponding to the pixel format with number pix_fmt, or an header if pix_fmt is negative. More... | |
int | av_get_bits_per_pixel (const AVPixFmtDescriptor *pixdesc) |
Return the number of bits per pixel used by the pixel format described by pixdesc. More... | |
const AVPixFmtDescriptor * | av_pix_fmt_desc_get (enum AVPixelFormat pix_fmt) |
const AVPixFmtDescriptor * | av_pix_fmt_desc_next (const AVPixFmtDescriptor *prev) |
Iterate over all pixel format descriptors known to libavutil. More... | |
enum AVPixelFormat | av_pix_fmt_desc_get_id (const AVPixFmtDescriptor *desc) |
int | av_pix_fmt_get_chroma_sub_sample (enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift) |
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor. More... | |
int | av_pix_fmt_count_planes (enum AVPixelFormat pix_fmt) |
enum AVPixelFormat | av_pix_fmt_swap_endianness (enum AVPixelFormat pix_fmt) |
Utility function to swap the endianness of a pixel format. More... | |
const char * | av_color_range_name (enum AVColorRange range) |
const char * | av_color_primaries_name (enum AVColorPrimaries primaries) |
const char * | av_color_transfer_name (enum AVColorTransferCharacteristic transfer) |
const char * | av_color_space_name (enum AVColorSpace space) |
const char * | av_chroma_location_name (enum AVChromaLocation location) |
#define AV_PIX_FMT_FLAG_BE (1 << 0) |
Pixel format is big-endian.
Definition at line 130 of file pixdesc.h.
Referenced by av_read_image_line(), av_write_image_line(), isBE(), and xwd_encode_frame().
#define AV_PIX_FMT_FLAG_PAL (1 << 1) |
Pixel format has a palette in data[1], values are indexes in this palette.
Definition at line 134 of file pixdesc.h.
Referenced by av_image_alloc(), av_image_copy(), av_image_copy_to_buffer(), av_image_fill_pointers(), config_props(), encode_frame(), filter_frame(), get_video_buffer(), raw_init_decoder(), show_pix_fmts(), shuffleplanes_config_input(), and usePal().
#define AV_PIX_FMT_FLAG_BITSTREAM (1 << 2) |
All values of a component are bit-wise packed end to end.
Definition at line 138 of file pixdesc.h.
Referenced by av_image_fill_linesizes(), av_image_get_linesize(), av_read_image_line(), av_write_image_line(), query_formats(), and show_pix_fmts().
#define AV_PIX_FMT_FLAG_HWACCEL (1 << 3) |
Pixel format is an HW accelerated format.
Definition at line 142 of file pixdesc.h.
Referenced by av_image_copy(), av_image_fill_linesizes(), av_image_fill_pointers(), ff_get_format(), get_format(), hwdownload_query_formats(), is_hwaccel_pix_fmt(), query_formats(), and show_pix_fmts().
#define AV_PIX_FMT_FLAG_PLANAR (1 << 4) |
At least one pixel component is not in the first data plane.
Definition at line 146 of file pixdesc.h.
Referenced by decode_slice(), encode_slice(), ff_pnm_decode_header(), is_yuv_planar(), isPacked(), isPackedRGB(), isPlanar(), isPlanarRGB(), and isPlanarYUV().
#define AV_PIX_FMT_FLAG_RGB (1 << 5) |
The pixel format contains RGB-like data (as opposed to YUV/grayscale).
Definition at line 150 of file pixdesc.h.
Referenced by avcodec_get_pix_fmt_loss(), encode_frame(), is_yuv_planar(), isPackedRGB(), isPlanarRGB(), isRGB(), and isYUV().
#define AV_PIX_FMT_FLAG_PSEUDOPAL (1 << 6) |
The pixel format is "pseudo-paletted".
This means that Libav treats it as paletted internally, but the palette is generated by the decoder and is not stored in the file.
Definition at line 156 of file pixdesc.h.
Referenced by av_image_alloc(), av_image_copy(), av_image_fill_pointers(), av_image_get_buffer_size(), config_props(), filter_frame(), get_video_buffer(), raw_decode(), raw_init_decoder(), shuffleplanes_config_input(), and usePal().
#define AV_PIX_FMT_FLAG_ALPHA (1 << 7) |
The pixel format has an alpha channel.
Definition at line 160 of file pixdesc.h.
Referenced by avcodec_get_pix_fmt_loss(), encode_init(), is_gray(), and yuv2gbrp_full_X_c().
void av_read_image_line | ( | uint16_t * | dst, |
const uint8_t * | data[4], | ||
const int | linesize[4], | ||
const AVPixFmtDescriptor * | desc, | ||
int | x, | ||
int | y, | ||
int | c, | ||
int | w, | ||
int | read_pal_component | ||
) |
Read a line from an image, and write the values of the pixel format component c to dst.
data | the array containing the pointers to the planes of the image |
linesize | the array containing the linesizes of the image |
desc | the pixel format descriptor for the image |
x | the horizontal coordinate of the first pixel to read |
y | the vertical coordinate of the first pixel to read |
w | the width of the line to read, that is the number of values to write to dst |
read_pal_component | if not zero and the format is a paletted format writes the values corresponding to the palette component c in data[1] to dst, rather than the palette indexes in data[0]. The behavior is undefined if the format is not paletted. |
Definition at line 33 of file pixdesc.c.
Referenced by filter_frame().
void av_write_image_line | ( | const uint16_t * | src, |
uint8_t * | data[4], | ||
const int | linesize[4], | ||
const AVPixFmtDescriptor * | desc, | ||
int | x, | ||
int | y, | ||
int | c, | ||
int | w | ||
) |
Write the values from src to the pixel format component c of an image line.
src | array containing the values to write |
data | the array containing the pointers to the planes of the image to write into. It is supposed to be zeroed. |
linesize | the array containing the linesizes of the image |
desc | the pixel format descriptor for the image |
x | the horizontal coordinate of the first pixel to write |
y | the vertical coordinate of the first pixel to write |
w | the width of the line to write, that is the number of values to write to the image line |
Definition at line 81 of file pixdesc.c.
Referenced by filter_frame().
enum AVPixelFormat av_get_pix_fmt | ( | const char * | name | ) |
Return the pixel format corresponding to name.
If there is no pixel format with name name, then looks for a pixel format with the name corresponding to the native endian format of name. For example in a little-endian system, first looks for "gray16", then for "gray16le".
Finally if no pixel format has been found, returns PIX_FMT_NONE.
Definition at line 1716 of file pixdesc.c.
Referenced by add_input_streams(), avfoundation_read_header(), dc1394_read_common(), fileTest(), get_video_config(), img_read_header(), init(), init_video(), main(), new_video_stream(), nppscale_init(), qsvscale_init(), rawvideo_read_header(), scale_vaapi_init(), and v4l2_read_header().
const char* av_get_pix_fmt_name | ( | enum AVPixelFormat | pix_fmt | ) |
Return the short name for a pixel format, NULL in case pix_fmt is unknown.
Definition at line 1704 of file pixdesc.c.
Referenced by av_hwframe_ctx_init(), avcodec_open2(), avcodec_string(), config_input_overlay(), config_props(), cuda_frames_init(), dc1394_read_common(), dvvideo_encode_init(), dxva2_init_pool(), fbdev_read_header(), ff_dlog_link(), ff_hevc_decode_nal_sps(), ff_qsv_process_data(), ff_vaapi_encode_init(), hwdownload_config_output(), hwupload_config_output(), init_processing_chain(), init_video(), libkvazaar_encode(), libopenjpeg_create_image(), libopenjpeg_encode_frame(), list_formats(), main(), planarRgbToRgbWrapper(), rgbToPlanarRgbWrapper(), scale_vaapi_config_output(), scale_vaapi_filter_frame(), setup_stream(), sws_init_context(), targa_encode_frame(), vaapi_build_decoder_config(), vaapi_device_init(), vaapi_frames_init(), vdpau_frames_init(), vdpau_transfer_data_from(), and vdpau_transfer_data_to().
char* av_get_pix_fmt_string | ( | char * | buf, |
int | buf_size, | ||
enum AVPixelFormat | pix_fmt | ||
) |
Print in buf the string corresponding to the pixel format with number pix_fmt, or an header if pix_fmt is negative.
buf | the buffer where to write the string |
buf_size | the size of buf |
pix_fmt | the number of the pixel format to print the corresponding info string, or a negative value to print the corresponding header. |
int av_get_bits_per_pixel | ( | const AVPixFmtDescriptor * | pixdesc | ) |
Return the number of bits per pixel used by the pixel format described by pixdesc.
Note that this is not the same as the number of bits per sample.
The returned number of bits refers to the number of bits actually used for storing the pixel information, that is padding bits are not counted.
Definition at line 1740 of file pixdesc.c.
Referenced by av_get_pix_fmt_string(), avcodec_find_best_pix_fmt1(), config_props(), encode_frame(), ff_fill_line_with_color(), raw_encode_init(), show_pix_fmts(), sws_init_context(), sws_setColorspaceDetails(), and xwd_encode_frame().
const AVPixFmtDescriptor* av_pix_fmt_desc_get | ( | enum AVPixelFormat | pix_fmt | ) |
Definition at line 1768 of file pixdesc.c.
Referenced by av_image_alloc(), av_image_copy(), av_image_copy_to_buffer(), av_image_fill_linesizes(), av_image_fill_pointers(), av_image_get_buffer_size(), av_image_get_linesize(), av_picture_crop(), av_picture_pad(), av_pix_fmt_count_planes(), av_pix_fmt_get_chroma_sub_sample(), avcodec_align_dimensions(), avcodec_find_best_pix_fmt1(), avcodec_get_chroma_sub_sample(), avcodec_get_pix_fmt_loss(), check_image_pointers(), color_config_props(), config_input(), config_input_main(), config_output(), config_props(), config_props_output(), copy_picture_field(), decode_frame(), decode_slice(), doTest(), encode_frame(), encode_init(), encode_slice(), ff_draw_horiz_band(), ff_fill_line_with_color(), ff_get_format(), ff_get_unscaled_swscale(), ff_h264_draw_horiz_band(), ff_hevc_output_frame(), ff_mjpeg_decode_sof(), ff_pnm_decode_header(), ff_sws_init_output_funcs(), ffv1_encode_init(), filter_frame(), findRgbConvFn(), frame_end(), get_aspect_ratio(), get_deinterleaved_format(), get_format(), get_video_buffer(), getSubSampleFactors(), hScale16To15_c(), hScale16To19_c(), init_video(), init_video_param(), is16BPS(), is9_OR_10BPS(), is_hwaccel_pix_fmt(), isALPHA(), isBE(), isPacked(), isPackedRGB(), isPlanar(), isPlanarRGB(), isPlanarYUV(), isRGB(), isYUV(), libopenjpeg_create_image(), libopenjpeg_decode_frame(), libopenjpeg_ispacked(), libopenjpeg_matches_pix_fmt(), libx265_encode_frame(), libx265_encode_init(), map_pixel_format(), planarCopyWrapper(), pnm_encode_frame(), print_digraph(), qsv_decode_init(), qsv_init_pool(), raw_decode(), raw_encode_init(), raw_init_decoder(), selfTest(), show_stream(), shuffleplanes_config_input(), sws_format_name(), sws_init_context(), sws_setColorspaceDetails(), swscale(), usePal(), utvideo_encode_init(), vaapi_build_decoder_config(), verify_md5(), xwd_encode_frame(), and yuv2gbrp_full_X_c().
const AVPixFmtDescriptor* av_pix_fmt_desc_next | ( | const AVPixFmtDescriptor * | prev | ) |
Iterate over all pixel format descriptors known to libavutil.
prev | previous descriptor. NULL to get the first descriptor. |
Definition at line 1775 of file pixdesc.c.
Referenced by ff_all_formats(), hwdownload_query_formats(), init(), query_formats(), and show_pix_fmts().
enum AVPixelFormat av_pix_fmt_desc_get_id | ( | const AVPixFmtDescriptor * | desc | ) |
Definition at line 1784 of file pixdesc.c.
Referenced by ff_all_formats(), hwdownload_query_formats(), init(), query_formats(), and show_pix_fmts().
int av_pix_fmt_get_chroma_sub_sample | ( | enum AVPixelFormat | pix_fmt, |
int * | h_shift, | ||
int * | v_shift | ||
) |
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
[in] | pix_fmt | the pixel format |
[out] | h_shift | store log2_chroma_w (horizontal/width shift) |
[out] | v_shift | store log2_chroma_h (vertical/height shift) |
Definition at line 1793 of file pixdesc.c.
Referenced by cuda_frames_init(), encode_frame(), encode_init(), ff_mjpeg_encode_picture_header(), ff_mpv_common_init(), ff_mpv_frame_start(), ffv1_encode_init(), h264_slice_header_init(), init_stage(), ljpeg_encode_init(), load_input_picture(), vp3_decode_init(), and yuv4_write_packet().
int av_pix_fmt_count_planes | ( | enum AVPixelFormat | pix_fmt | ) |
Definition at line 1805 of file pixdesc.c.
Referenced by frame_copy_video(), get_deinterleaved_format(), magy_decode_frame(), and shuffleplanes_config_input().
enum AVPixelFormat av_pix_fmt_swap_endianness | ( | enum AVPixelFormat | pix_fmt | ) |
Utility function to swap the endianness of a pixel format.
[in] | pix_fmt | the pixel format |
Definition at line 1821 of file pixdesc.c.
Referenced by sws_init_context().
const char* av_color_range_name | ( | enum AVColorRange | range | ) |
Definition at line 1872 of file pixdesc.c.
Referenced by avcodec_string(), and show_stream().
const char* av_color_primaries_name | ( | enum AVColorPrimaries | primaries | ) |
Definition at line 1878 of file pixdesc.c.
Referenced by avcodec_string(), mov_read_colr(), and show_stream().
const char* av_color_transfer_name | ( | enum AVColorTransferCharacteristic | transfer | ) |
Definition at line 1884 of file pixdesc.c.
Referenced by avcodec_string(), mov_read_colr(), and show_stream().
const char* av_color_space_name | ( | enum AVColorSpace | space | ) |
Definition at line 1890 of file pixdesc.c.
Referenced by avcodec_string(), mov_read_colr(), and show_stream().
const char* av_chroma_location_name | ( | enum AVChromaLocation | location | ) |
Definition at line 1896 of file pixdesc.c.
Referenced by avcodec_string(), and show_stream().