Commit 8f653e28 authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Ronald S. Bultje

lavu: add av_get_pix_fmt_name() convenience function

Also deprecate avcodec_get_pix_fmt_name() in its favor.
Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent 26513856
...@@ -13,6 +13,10 @@ libavutil: 2011-04-18 ...@@ -13,6 +13,10 @@ libavutil: 2011-04-18
API changes, most recent first: API changes, most recent first:
2011-05-XX - xxxxxx - lavu 51.X.0 - pixdesc.h
Add av_get_pix_fmt_name() in libavutil/pixdesc.h, and deprecate
avcodec_get_pix_fmt_name() in libavcodec/avcodec.h in its favor.
2011-05-25 - 30315a8 - lavf 53.1.0 - avformat.h 2011-05-25 - 30315a8 - lavf 53.1.0 - avformat.h
Add fps_probe_size to AVFormatContext. Add fps_probe_size to AVFormatContext.
......
...@@ -3306,7 +3306,15 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width, ...@@ -3306,7 +3306,15 @@ int avpicture_layout(const AVPicture* src, enum PixelFormat pix_fmt, int width,
*/ */
int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height); int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height);
void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift); void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *v_shift);
#if FF_API_GET_PIX_FMT_NAME
/**
* @deprecated Deprecated in favor of av_get_pix_fmt_name().
*/
attribute_deprecated
const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt); const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt);
#endif
void avcodec_set_dimensions(AVCodecContext *s, int width, int height); void avcodec_set_dimensions(AVCodecContext *s, int width, int height);
/** /**
......
...@@ -417,13 +417,12 @@ void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int * ...@@ -417,13 +417,12 @@ void avcodec_get_chroma_sub_sample(enum PixelFormat pix_fmt, int *h_shift, int *
*v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h; *v_shift = av_pix_fmt_descriptors[pix_fmt].log2_chroma_h;
} }
#if FF_API_GET_PIX_FMT_NAME
const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt) const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt)
{ {
if ((unsigned)pix_fmt >= PIX_FMT_NB) return av_get_pix_fmt_name(pix_fmt);
return NULL;
else
return av_pix_fmt_descriptors[pix_fmt].name;
} }
#endif
int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt) int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt)
{ {
......
...@@ -65,5 +65,8 @@ ...@@ -65,5 +65,8 @@
#ifndef FF_API_FLAC_GLOBAL_OPTS #ifndef FF_API_FLAC_GLOBAL_OPTS
#define FF_API_FLAC_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54) #define FF_API_FLAC_GLOBAL_OPTS (LIBAVCODEC_VERSION_MAJOR < 54)
#endif #endif
#ifndef FF_API_GET_PIX_FMT_NAME
#define FF_API_GET_PIX_FMT_NAME (LIBAVCODEC_VERSION_MAJOR < 54)
#endif
#endif /* AVCODEC_VERSION_H */ #endif /* AVCODEC_VERSION_H */
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
#define LIBAVUTIL_VERSION_MAJOR 51 #define LIBAVUTIL_VERSION_MAJOR 51
#define LIBAVUTIL_VERSION_MINOR 1 #define LIBAVUTIL_VERSION_MINOR 2
#define LIBAVUTIL_VERSION_MICRO 0 #define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
......
...@@ -906,6 +906,12 @@ static enum PixelFormat get_pix_fmt_internal(const char *name) ...@@ -906,6 +906,12 @@ static enum PixelFormat get_pix_fmt_internal(const char *name)
return PIX_FMT_NONE; return PIX_FMT_NONE;
} }
const char *av_get_pix_fmt_name(enum PixelFormat pix_fmt)
{
return (unsigned)pix_fmt < PIX_FMT_NB ?
av_pix_fmt_descriptors[pix_fmt].name : NULL;
}
#if HAVE_BIGENDIAN #if HAVE_BIGENDIAN
# define X_NE(be, le) be # define X_NE(be, le) be
#else #else
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#define AVUTIL_PIXDESC_H #define AVUTIL_PIXDESC_H
#include <inttypes.h> #include <inttypes.h>
#include "pixfmt.h"
typedef struct AVComponentDescriptor{ typedef struct AVComponentDescriptor{
uint16_t plane :2; ///< which of the 4 planes contains the component uint16_t plane :2; ///< which of the 4 planes contains the component
...@@ -141,6 +142,14 @@ void av_write_image_line(const uint16_t *src, uint8_t *data[4], const int linesi ...@@ -141,6 +142,14 @@ void av_write_image_line(const uint16_t *src, uint8_t *data[4], const int linesi
*/ */
enum PixelFormat av_get_pix_fmt(const char *name); enum PixelFormat av_get_pix_fmt(const char *name);
/**
* Return the short name for a pixel format, NULL in case pix_fmt is
* unknown.
*
* @see av_get_pix_fmt(), av_get_pix_fmt_string()
*/
const char *av_get_pix_fmt_name(enum PixelFormat pix_fmt);
/** /**
* Print in buf the string corresponding to the pixel format with * Print in buf the string corresponding to the pixel format with
* number pix_fmt, or an header if pix_fmt is negative. * number pix_fmt, or an header if pix_fmt is negative.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment