Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-08-07 02:07:59 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-07 02:44:07 +0400
commit8dfb8190d768f5ea5924f06a59fffa9fa5f8308b (patch)
treed9676900ade584b152fd136df65bc64a917af3f3 /libavcodec/rawdec.c
parent6a44699746501332207d967e27297cc6cfa987dd (diff)
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@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r--libavcodec/rawdec.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index ee1f3970ad..305c13e5e4 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;