summaryrefslogtreecommitdiff
path: root/libavcodec/dv_profile_internal.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2014-09-19 01:44:42 -0300
committerJames Almer <jamrial@gmail.com>2014-09-19 14:32:38 -0300
commit6edd6a4f002d8ca51f1f60be3c26afced1ba9420 (patch)
tree5114de1e8a88ccfc15954c8f211e16f4162a2883 /libavcodec/dv_profile_internal.h
parent5ccd08d26ddafe6e6f6374f6c5fa59c18727d219 (diff)
downloadffmpeg-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_internal.h')
-rw-r--r--libavcodec/dv_profile_internal.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/dv_profile_internal.h b/libavcodec/dv_profile_internal.h
index 97720416ab..67d3a2b79a 100644
--- a/libavcodec/dv_profile_internal.h
+++ b/libavcodec/dv_profile_internal.h
@@ -19,9 +19,17 @@
#ifndef AVCODEC_DV_PROFILE_INTERNAL_H
#define AVCODEC_DV_PROFILE_INTERNAL_H
+#include "dv_profile.h"
+
/**
* Print all allowed DV profiles into logctx at specified logging level.
*/
void ff_dv_print_profiles(void *logctx, int loglevel);
+/**
+ * Get a DV profile for the provided compressed frame.
+ */
+const AVDVProfile* ff_dv_frame_profile(AVCodecContext* codec, const AVDVProfile *sys,
+ const uint8_t *frame, unsigned buf_size);
+
#endif /* AVCODEC_DV_PROFILE_INTERNAL_H */