diff options
author | James Almer <jamrial@gmail.com> | 2015-06-26 16:37:19 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-06-26 16:43:37 -0300 |
commit | 5abd4a932337e18f65cb1b229752299ed0573dcf (patch) | |
tree | dbe6c17f43c972f1604c23ff8c6cb63676094d3e | |
parent | c72a8319311889b7d3d69d0979745008a52025fe (diff) | |
download | ffmpeg-5abd4a932337e18f65cb1b229752299ed0573dcf.tar.gz |
libvpx: disable unused function prototypes
Fixes make checkheader
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/libvpx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/libvpx.h b/libavcodec/libvpx.h index 41c246ba74..89a7bb1b34 100644 --- a/libavcodec/libvpx.h +++ b/libavcodec/libvpx.h @@ -24,7 +24,9 @@ #include "avcodec.h" void ff_vp9_init_static(AVCodec *codec); +#if 0 enum AVPixelFormat ff_vpx_imgfmt_to_pixfmt(vpx_img_fmt_t img); vpx_img_fmt_t ff_vpx_pixfmt_to_imgfmt(enum AVPixelFormat pix); +#endif #endif /* AVCODEC_LIBVPX_H */ |