Skip to content
Snippets Groups Projects
Commit 15d4ab4d authored by Kipp Cannon's avatar Kipp Cannon
Browse files

framecpp_igwdparse: edit some comments

parent 40740a96
No related branches found
No related tags found
No related merge requests found
......@@ -380,8 +380,8 @@ static gboolean check_valid_frame(GstBaseParse *parse, GstBaseParseFrame *frame,
GST_DEBUG_OBJECT(element, "found incomplete %u byte " FRAMEH_NAME " structure at offset %zu, need %d more bytes", (guint) length, element->offset, *framesize - GST_BUFFER_SIZE(frame->buffer));
} else if(klass == element->eof_klass) {
/*
* end-of-file structure. if it's complete then
* the file is complete
* found end-of-file structure. if it's complete
* then the file is complete
*/
if(*framesize <= GST_BUFFER_SIZE(frame->buffer)) {
......@@ -392,7 +392,7 @@ static gboolean check_valid_frame(GstBaseParse *parse, GstBaseParseFrame *frame,
GST_DEBUG_OBJECT(element, "found incomplete %u byte " FRENDOFFILE_NAME " structure at offset %zu, need %d more bytes", (guint) length, element->offset, *framesize - GST_BUFFER_SIZE(frame->buffer));
} else {
/*
* something else. skip to next structure
* found something else. skip to next structure
*/
GST_DEBUG_OBJECT(element, "found %u byte structure at offset %zu", (guint) length, element->offset);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment