Skip to content

Commit

Permalink
fakesink, identity, fakesrc: fix debug printing if TAG_MEMORY buffer …
Browse files Browse the repository at this point in the history
…flag

The IN_CAPS flag does not exist any more.
  • Loading branch information
tp-m committed Mar 6, 2014
1 parent 5973f8c commit 3c966d0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions plugins/elements/gstfakesink.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,10 @@ gst_fake_sink_render (GstBaseSink * bsink, GstBuffer * buf)
}

{
const char *flag_list[15] = {
const char *flag_list[] = {
"", "", "", "", "live", "decode-only", "discont", "resync", "corrupted",
"marker", "header", "gap", "droppable", "delta-unit", "in-caps"
"marker", "header", "gap", "droppable", "delta-unit", "tag-memory",
"FIXME"
};
int i;
char *end = flag_str;
Expand Down
5 changes: 3 additions & 2 deletions plugins/elements/gstfakesrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -831,9 +831,10 @@ gst_fake_src_create (GstBaseSrc * basesrc, guint64 offset, guint length,
}

{
const char *flag_list[15] = {
const char *flag_list[] = {
"", "", "", "", "live", "decode-only", "discont", "resync", "corrupted",
"marker", "header", "gap", "droppable", "delta-unit", "in-caps"
"marker", "header", "gap", "droppable", "delta-unit", "tag-memory",
"FIXME"
};
int i;
char *end = flag_str;
Expand Down
5 changes: 3 additions & 2 deletions plugins/elements/gstidentity.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,9 +471,10 @@ gst_identity_update_last_message_for_buffer (GstIdentity * identity,
GST_OBJECT_LOCK (identity);

{
const char *flag_list[15] = {
const char *flag_list[] = {
"", "", "", "", "live", "decode-only", "discont", "resync", "corrupted",
"marker", "header", "gap", "droppable", "delta-unit", "in-caps"
"marker", "header", "gap", "droppable", "delta-unit", "tag-memory",
"FIXME"
};
int i;
char *end = flag_str;
Expand Down

0 comments on commit 3c966d0

Please sign in to comment.