-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RDI-2056 #52
base: main
Are you sure you want to change the base?
Conversation
gst.wasm/subprojects/gst-plugins-web/gst/web/gstwebdownload.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst/web/gstwebdownload.cpp
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
asked few questions to confirm
gst.wasm/subprojects/gst-plugins-web/gst/web/gstwebdownload.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst/web/gstwebdownload.cpp
Outdated
Show resolved
Hide resolved
@@ -37,6 +38,9 @@ gboolean gst_web_utils_element_handle_context_query ( | |||
GstElement *element, GstQuery *query, GstWebCanvas *canvas); | |||
gboolean gst_web_utils_element_set_context ( | |||
GstElement *element, GstContext *context, GstWebCanvas **canvas); | |||
GstVideoFormat gst_web_utils_convert_video_frame_format ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Try to use the "namespace" of the object first after utlils, instead of the verb. For example, gst_web_utils_video_format_from_web_format
, or gst_web_utils_video_format_from_string
, etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cfoch This isnt solved yet.
CC: @aslobodeniuk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I only fixed the specific line, but now I have fixed the line below, too.
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Outdated
Show resolved
Hide resolved
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebutils.c
Outdated
Show resolved
Hide resolved
init_pipeline () | ||
{ | ||
pipeline = | ||
gst_parse_launch ("webfetchsrc location=" DEFAULT_URL " ! " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
webstreamsrc have been merged, and I would say it should be preferred to webfetchsrc, because it downloads the data in a smoother way. Without a queue in the pipeline the playback will be more smooth.
2d1d8ce
to
34dcb85
Compare
gst.wasm/subprojects/gst-plugins-web/gst-libs/gst/web/gstwebvideoframe.cpp
Outdated
Show resolved
Hide resolved
Ref #RDI-2056
No description provided.