summaryrefslogtreecommitdiff
path: root/libavcodec/dv_profile.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-10 02:09:13 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-10 02:09:13 +0200
commita71fcfad892c4c59a011556f70b998aca1139b37 (patch)
treeaf961a49102589bc3e8ca8ea93d969428f1e05de /libavcodec/dv_profile.c
parent329832d779e2c9f2a2aa97c90b6e3eb1aadb8ee8 (diff)
parent9325d88eba8038b3e2a4485e473a018410379e2d (diff)
Merge commit '9325d88eba8038b3e2a4485e473a018410379e2d'
* commit '9325d88eba8038b3e2a4485e473a018410379e2d': lavc: remove obsolete and disabled avpriv functions Conflicts: libavcodec/dv_profile.c libavcodec/dv_profile.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dv_profile.c')
-rw-r--r--libavcodec/dv_profile.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libavcodec/dv_profile.c b/libavcodec/dv_profile.c
index 58ce79f269..79212b9765 100644
--- a/libavcodec/dv_profile.c
+++ b/libavcodec/dv_profile.c
@@ -328,18 +328,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)
-{
- if (codec->coded_width || codec->coded_height) {
- return av_dv_codec_profile(codec->coded_width, codec->coded_height, codec->pix_fmt);
- } else
- return av_dv_codec_profile(codec->width, codec->height, codec->pix_fmt);
-}
-#endif