diff options
author | James Almer <jamrial@gmail.com> | 2014-09-19 01:44:42 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2014-09-19 14:32:38 -0300 |
commit | 6edd6a4f002d8ca51f1f60be3c26afced1ba9420 (patch) | |
tree | 5114de1e8a88ccfc15954c8f211e16f4162a2883 /libavcodec/dv_profile.h | |
parent | 5ccd08d26ddafe6e6f6374f6c5fa59c18727d219 (diff) | |
download | ffmpeg-6edd6a4f002d8ca51f1f60be3c26afced1ba9420.tar.gz |
avcodec/dv_profile: deprecate internal function that shouldn't be public
Reviewed-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dv_profile.h')
-rw-r--r-- | libavcodec/dv_profile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/dv_profile.h b/libavcodec/dv_profile.h index a2aec4d1c2..d4437c9786 100644 --- a/libavcodec/dv_profile.h +++ b/libavcodec/dv_profile.h @@ -58,8 +58,14 @@ typedef struct AVDVProfile { const uint8_t (*audio_shuffle)[9]; /* PCM shuffling table */ } AVDVProfile; +#if FF_API_DV_FRAME_PROFILE +/** + * @deprecated use av_dv_frame_profile() + */ +attribute_deprecated const AVDVProfile* avpriv_dv_frame_profile2(AVCodecContext* codec, const AVDVProfile *sys, const uint8_t* frame, unsigned buf_size); +#endif /** * Get a DV profile for the provided compressed frame. |