mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 11:40:38 +00:00
av: Remove some unused variables and function declarations
This commit is contained in:
parent
08ca549627
commit
4221ae1022
2 changed files with 1 additions and 14 deletions
|
@ -83,9 +83,6 @@ gst_ffmpeg_log_callback (void *ptr, int level, const char *fmt, va_list vl)
|
|||
gint len = strlen (fmt);
|
||||
gchar *fmt2 = NULL;
|
||||
|
||||
if (_shut_up_I_am_probing)
|
||||
return;
|
||||
|
||||
switch (level) {
|
||||
case AV_LOG_QUIET:
|
||||
gst_level = GST_LEVEL_NONE;
|
||||
|
@ -117,10 +114,6 @@ gst_ffmpeg_log_callback (void *ptr, int level, const char *fmt, va_list vl)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
gboolean _shut_up_I_am_probing = FALSE;
|
||||
#endif
|
||||
|
||||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
|
@ -145,7 +138,6 @@ plugin_init (GstPlugin * plugin)
|
|||
gst_ffmpegscale_register (plugin);
|
||||
#endif
|
||||
#if 0
|
||||
gst_ffmpegcsp_register (plugin);
|
||||
gst_ffmpegaudioresample_register (plugin);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -36,21 +36,16 @@ GST_DEBUG_CATEGORY_EXTERN (ffmpeg_debug);
|
|||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#ifndef GST_DISABLE_GST_DEBUG
|
||||
extern gboolean _shut_up_I_am_probing;
|
||||
#endif
|
||||
|
||||
extern gboolean gst_ffmpegdemux_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegauddec_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegviddec_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegaudenc_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegvidenc_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegmux_register (GstPlugin * plugin);
|
||||
extern gboolean gst_ffmpegcsp_register (GstPlugin * plugin);
|
||||
#if 0
|
||||
extern gboolean gst_ffmpegscale_register (GstPlugin * plugin);
|
||||
#endif
|
||||
extern gboolean gst_ffmpegaudioresample_register (GstPlugin * plugin);
|
||||
#endif
|
||||
extern gboolean gst_ffmpegdeinterlace_register (GstPlugin * plugin);
|
||||
|
||||
int gst_ffmpeg_avcodec_open (AVCodecContext *avctx, AVCodec *codec);
|
||||
|
|
Loading…
Reference in a new issue