diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-12 14:06:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-12 14:06:30 +0100 |
commit | 43d6ac53f262f86afff70e45a57e2e79bdbd4c30 (patch) | |
tree | 58bf0942f8179817f5b501395b2fc4c9d3b3b327 /libavcodec/raw.h | |
parent | dae382b5b28df492e4bfbac35ac6b0cddc994337 (diff) | |
download | ffmpeg-43d6ac53f262f86afff70e45a57e2e79bdbd4c30.tar.gz |
lavc: ff_find_pix_fmt ->avpriv
Found-by: durandal_1707
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/raw.h')
-rw-r--r-- | libavcodec/raw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/raw.h b/libavcodec/raw.h index 87b6c901ca..3e59f28e33 100644 --- a/libavcodec/raw.h +++ b/libavcodec/raw.h @@ -36,6 +36,9 @@ typedef struct PixelFormatTag { } PixelFormatTag; extern av_export const PixelFormatTag ff_raw_pix_fmt_tags[]; +#if LIBAVCODEC_VERSION_MAJOR < 55 enum AVPixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc); +#endif +enum AVPixelFormat avpriv_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc); #endif /* AVCODEC_RAW_H */ |