summaryrefslogtreecommitdiff
path: root/libavcodec/dv_profile.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-08-06 20:02:11 +0000
committerAnton Khirnov <anton@khirnov.net>2014-08-09 16:59:34 +0000
commit9325d88eba8038b3e2a4485e473a018410379e2d (patch)
tree22c127f4a4730cc8d96a382b8a30875e540f5973 /libavcodec/dv_profile.c
parent24c788f4878729a42150581d7ed7e9a11daf874d (diff)
lavc: remove obsolete and disabled avpriv functions
Diffstat (limited to 'libavcodec/dv_profile.c')
-rw-r--r--libavcodec/dv_profile.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/dv_profile.c b/libavcodec/dv_profile.c
index 686632d89e..f3cf86f2be 100644
--- a/libavcodec/dv_profile.c
+++ b/libavcodec/dv_profile.c
@@ -308,16 +308,3 @@ const AVDVProfile *av_dv_codec_profile(int width, int height,
return NULL;
}
-
-#if LIBAVCODEC_VERSION_MAJOR < 56
-const AVDVProfile *avpriv_dv_frame_profile(const AVDVProfile *sys,
- const uint8_t* frame, unsigned buf_size)
-{
- return av_dv_frame_profile(sys, frame, buf_size);
-}
-
-const AVDVProfile *avpriv_dv_codec_profile(AVCodecContext *codec)
-{
- return av_dv_codec_profile(codec->width, codec->height, codec->pix_fmt);
-}
-#endif