avidemux: Replace deprecated GST_DISABLE_DEBUG with correct macro. Fixes #587826

This commit is contained in:
Philip Jgenstedt 2009-07-06 10:40:31 +02:00 committed by Edward Hervey
parent 2bcf52dde7
commit 0ebff2d14c

View file

@ -1841,7 +1841,7 @@ gst_avi_demux_parse_index (GstAviDemux * avi,
GList *entries_list = NULL; GList *entries_list = NULL;
guint i, num, n; guint i, num, n;
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
gulong _nr_keyframes = 0; gulong _nr_keyframes = 0;
#endif #endif
@ -1912,7 +1912,7 @@ gst_avi_demux_parse_index (GstAviDemux * avi,
/* all audio frames are keyframes */ /* all audio frames are keyframes */
target->flags |= GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME; target->flags |= GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME;
} }
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (target->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME) if (target->flags & GST_AVI_INDEX_ENTRY_FLAG_KEYFRAME)
_nr_keyframes++; _nr_keyframes++;
#endif #endif
@ -2548,7 +2548,7 @@ gst_avi_demux_massage_index (GstAviDemux * avi,
list ? g_list_length (list) : 0); list ? g_list_length (list) : 0);
if (list) { if (list) {
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
guint num_added_total = 0; guint num_added_total = 0;
guint num_per_stream[GST_AVI_DEMUX_MAX_STREAMS] = { 0, }; guint num_per_stream[GST_AVI_DEMUX_MAX_STREAMS] = { 0, };
#endif #endif
@ -2632,13 +2632,13 @@ gst_avi_demux_massage_index (GstAviDemux * avi,
entry2->frames_before++; entry2->frames_before++;
} }
} }
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
num_added_total += num_added; num_added_total += num_added;
#endif #endif
} }
} }
} }
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (num_added_total) if (num_added_total)
GST_LOG ("added %u new index entries", num_added_total); GST_LOG ("added %u new index entries", num_added_total);
#endif #endif
@ -2666,7 +2666,7 @@ gst_avi_demux_massage_index (GstAviDemux * avi,
entry->index_nr = i; entry->index_nr = i;
entry->ts -= delay; entry->ts -= delay;
memcpy (&avi->index_entries[i], entry, sizeof (gst_avi_index_entry)); memcpy (&avi->index_entries[i], entry, sizeof (gst_avi_index_entry));
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
num_per_stream[entry->stream_nr]++; num_per_stream[entry->stream_nr]++;
#endif #endif
@ -2682,7 +2682,7 @@ gst_avi_demux_massage_index (GstAviDemux * avi,
stream->idx_duration -= delay; stream->idx_duration -= delay;
} }
} }
#ifndef GST_DISABLE_DEBUG #ifndef GST_DISABLE_GST_DEBUG
{ {
gchar str[GST_AVI_DEMUX_MAX_STREAMS * (1 + 6 + 2)]; gchar str[GST_AVI_DEMUX_MAX_STREAMS * (1 + 6 + 2)];
gchar *pad_name; gchar *pad_name;