[Bug 758515] dashdemux : suggestion for setting the framerate info at dashdemux.
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Thu Dec 3 04:54:06 PST 2015
https://bugzilla.gnome.org/show_bug.cgi?id=758515
--- Comment #12 from Suhwang Kim <suhwang.kim at lge.com> ---
I know your last two comments.
1) if (stream->cur_adapt_set && stream-cur_adapt_set->maxFrameRate != NULL)
I think "stream->cur_adapt_set &&" does not need. Because of
"stream->cur_adapt_set" already check the as below.
+ if (stream == NULL || stream->cur_adapt_set == NULL
+ || stream->cur_representation == NULL)
+ return FALSE;
2) I already check your comment.
Please See your gstmpdparser.h.
And check the struct as below.
struct _GstActiveStream {
...
GstAdaptationSetNode *cur_adapt_set;
GstRepresentationNode *cur_representation;
..
}
struct GstAdaptationSetNode {
...
GstFrameRate *minFrameRate;
GstFrameRate *maxFrameRate;
GstRepresentationBaseType *RepresentationBase;
...
}
struct GstRepresentationNode {
...
GstRepresentationBaseType *RepresentationBase;
...
}
struct GstRepresentationBaseType {
...
GstFrameRate *frameRate;
...
}
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list