summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2009-02-25 23:24:34 +0000
committerDiego Biurrun <diego@biurrun.de>2009-02-25 23:24:34 +0000
commitd7dae42e70208b4a74c3136bb767eae65c11e25c (patch)
tree339293a4524643699e3f0d935505043701674108 /libavcodec
parent66d8229072fca146a3e3b7533114ace11cf4b7dc (diff)
Add missing prototype for ff_is_hwaccel_pix_fmt().
patch by Gwenole Beauchesne, gbeauchesne,splitted-desktop,com Originally committed as revision 17593 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/internal.h b/libavcodec/internal.h
index 9f40538db5..0466318acb 100644
--- a/libavcodec/internal.h
+++ b/libavcodec/internal.h
@@ -48,6 +48,11 @@ void ff_log_missing_feature(void *avc, const char *feature, int want_sample);
void ff_log_ask_for_sample(void *avc, const char *msg);
/**
+ * Determines whether \p pix_fmt is a hardware accelerated format.
+ */
+int ff_is_hwaccel_pix_fmt(enum PixelFormat pix_fmt);
+
+/**
* Returns the hardware accelerated codec for codec \p codec_id and
* pixel format \p pix_fmt.
*