mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-15 19:40:07 +01:00
Merge commit '2758cdedfb7ac61f8b5e4861f99218b6fd43491d'
This commit also disables the async fate test, because it used internal APIs in a non-kosher way, which no longer exists. * commit '2758cdedfb7ac61f8b5e4861f99218b6fd43491d': lavf: reorganize URLProtocols Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
This commit is contained in:
@@ -983,7 +983,7 @@ static int udp_close(URLContext *h)
|
||||
return 0;
|
||||
}
|
||||
|
||||
URLProtocol ff_udp_protocol = {
|
||||
const URLProtocol ff_udp_protocol = {
|
||||
.name = "udp",
|
||||
.url_open = udp_open,
|
||||
.url_read = udp_read,
|
||||
@@ -995,7 +995,7 @@ URLProtocol ff_udp_protocol = {
|
||||
.flags = URL_PROTOCOL_FLAG_NETWORK,
|
||||
};
|
||||
|
||||
URLProtocol ff_udplite_protocol = {
|
||||
const URLProtocol ff_udplite_protocol = {
|
||||
.name = "udplite",
|
||||
.url_open = udplite_open,
|
||||
.url_read = udp_read,
|
||||
|
||||
Reference in New Issue
Block a user