[FFmpeg-cvslog] libavcodec/rawdec: remove old ff_find_pix_fmt() function
James Almer
git at videolan.org
Thu Aug 7 01:12:13 CEST 2014
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Wed Aug 6 19:07:59 2014 -0300| [8dfb8190d768f5ea5924f06a59fffa9fa5f8308b] | committer: Michael Niedermayer
libavcodec/rawdec: remove old ff_find_pix_fmt() function
It's been dead code for more than a year
Signed-off-by: James Almer <jamrial at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8dfb8190d768f5ea5924f06a59fffa9fa5f8308b
---
libavcodec/libavcodec.v | 1 -
libavcodec/raw.h | 4 +---
libavcodec/rawdec.c | 7 -------
3 files changed, 1 insertion(+), 11 deletions(-)
diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v
index b4bd2c8..76e29f2 100644
--- a/libavcodec/libavcodec.v
+++ b/libavcodec/libavcodec.v
@@ -3,7 +3,6 @@ LIBAVCODEC_$MAJOR {
#deprecated, remove after next bump
audio_resample;
audio_resample_close;
- ff_find_pix_fmt;
ff_framenum_to_drop_timecode;
ff_framenum_to_smtpe_timecode;
ff_raw_pix_fmt_tags;
diff --git a/libavcodec/raw.h b/libavcodec/raw.h
index a417993..1812825 100644
--- a/libavcodec/raw.h
+++ b/libavcodec/raw.h
@@ -36,9 +36,7 @@ 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);
extern av_export const PixelFormatTag avpriv_pix_fmt_bps_avi[];
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index ee1f397..305c13e 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -62,13 +62,6 @@ static const AVClass rawdec_class = {
.version = LIBAVUTIL_VERSION_INT,
};
-#if LIBAVCODEC_VERSION_MAJOR < 55
-enum AVPixelFormat ff_find_pix_fmt(const PixelFormatTag *tags, unsigned int fourcc)
-{
- return avpriv_find_pix_fmt(tags, fourcc);
-}
-#endif
-
static av_cold int raw_init_decoder(AVCodecContext *avctx)
{
RawVideoContext *context = avctx->priv_data;
More information about the ffmpeg-cvslog
mailing list