Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c3b05d21
Commit
c3b05d21
authored
Dec 01, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proto: Realign struct initializers
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
7e580505
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
28 additions
and
28 deletions
+28
-28
applehttpproto.c
libavformat/applehttpproto.c
+5
-5
concat.c
libavformat/concat.c
+5
-5
gopher.c
libavformat/gopher.c
+5
-5
mmsh.c
libavformat/mmsh.c
+4
-4
mmst.c
libavformat/mmst.c
+4
-4
rtmpproto.c
libavformat/rtmpproto.c
+5
-5
No files found.
libavformat/applehttpproto.c
View file @
c3b05d21
...
@@ -294,10 +294,10 @@ retry:
...
@@ -294,10 +294,10 @@ retry:
}
}
URLProtocol
ff_applehttp_protocol
=
{
URLProtocol
ff_applehttp_protocol
=
{
.
name
=
"applehttp"
,
.
name
=
"applehttp"
,
.
url_open
=
applehttp_open
,
.
url_open
=
applehttp_open
,
.
url_read
=
applehttp_read
,
.
url_read
=
applehttp_read
,
.
url_close
=
applehttp_close
,
.
url_close
=
applehttp_close
,
.
flags
=
URL_PROTOCOL_FLAG_NESTED_SCHEME
,
.
flags
=
URL_PROTOCOL_FLAG_NESTED_SCHEME
,
.
priv_data_size
=
sizeof
(
AppleHTTPContext
),
.
priv_data_size
=
sizeof
(
AppleHTTPContext
),
};
};
libavformat/concat.c
View file @
c3b05d21
...
@@ -184,10 +184,10 @@ static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
...
@@ -184,10 +184,10 @@ static int64_t concat_seek(URLContext *h, int64_t pos, int whence)
}
}
URLProtocol
ff_concat_protocol
=
{
URLProtocol
ff_concat_protocol
=
{
.
name
=
"concat"
,
.
name
=
"concat"
,
.
url_open
=
concat_open
,
.
url_open
=
concat_open
,
.
url_read
=
concat_read
,
.
url_read
=
concat_read
,
.
url_seek
=
concat_seek
,
.
url_seek
=
concat_seek
,
.
url_close
=
concat_close
,
.
url_close
=
concat_close
,
.
priv_data_size
=
sizeof
(
struct
concat_data
),
.
priv_data_size
=
sizeof
(
struct
concat_data
),
};
};
libavformat/gopher.c
View file @
c3b05d21
...
@@ -115,10 +115,10 @@ static int gopher_read(URLContext *h, uint8_t *buf, int size)
...
@@ -115,10 +115,10 @@ static int gopher_read(URLContext *h, uint8_t *buf, int size)
URLProtocol
ff_gopher_protocol
=
{
URLProtocol
ff_gopher_protocol
=
{
.
name
=
"gopher"
,
.
name
=
"gopher"
,
.
url_open
=
gopher_open
,
.
url_open
=
gopher_open
,
.
url_read
=
gopher_read
,
.
url_read
=
gopher_read
,
.
url_write
=
gopher_write
,
.
url_write
=
gopher_write
,
.
url_close
=
gopher_close
,
.
url_close
=
gopher_close
,
.
priv_data_size
=
sizeof
(
GopherContext
),
.
priv_data_size
=
sizeof
(
GopherContext
),
};
};
libavformat/mmsh.c
View file @
c3b05d21
...
@@ -359,9 +359,9 @@ static int mmsh_read(URLContext *h, uint8_t *buf, int size)
...
@@ -359,9 +359,9 @@ static int mmsh_read(URLContext *h, uint8_t *buf, int size)
}
}
URLProtocol
ff_mmsh_protocol
=
{
URLProtocol
ff_mmsh_protocol
=
{
.
name
=
"mmsh"
,
.
name
=
"mmsh"
,
.
url_open
=
mmsh_open
,
.
url_open
=
mmsh_open
,
.
url_read
=
mmsh_read
,
.
url_read
=
mmsh_read
,
.
url_close
=
mmsh_close
,
.
url_close
=
mmsh_close
,
.
priv_data_size
=
sizeof
(
MMSHContext
),
.
priv_data_size
=
sizeof
(
MMSHContext
),
};
};
libavformat/mmst.c
View file @
c3b05d21
...
@@ -620,9 +620,9 @@ static int mms_read(URLContext *h, uint8_t *buf, int size)
...
@@ -620,9 +620,9 @@ static int mms_read(URLContext *h, uint8_t *buf, int size)
}
}
URLProtocol
ff_mmst_protocol
=
{
URLProtocol
ff_mmst_protocol
=
{
.
name
=
"mmst"
,
.
name
=
"mmst"
,
.
url_open
=
mms_open
,
.
url_open
=
mms_open
,
.
url_read
=
mms_read
,
.
url_read
=
mms_read
,
.
url_close
=
mms_close
,
.
url_close
=
mms_close
,
.
priv_data_size
=
sizeof
(
MMSTContext
),
.
priv_data_size
=
sizeof
(
MMSTContext
),
};
};
libavformat/rtmpproto.c
View file @
c3b05d21
...
@@ -992,10 +992,10 @@ static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
...
@@ -992,10 +992,10 @@ static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
}
}
URLProtocol
ff_rtmp_protocol
=
{
URLProtocol
ff_rtmp_protocol
=
{
.
name
=
"rtmp"
,
.
name
=
"rtmp"
,
.
url_open
=
rtmp_open
,
.
url_open
=
rtmp_open
,
.
url_read
=
rtmp_read
,
.
url_read
=
rtmp_read
,
.
url_write
=
rtmp_write
,
.
url_write
=
rtmp_write
,
.
url_close
=
rtmp_close
,
.
url_close
=
rtmp_close
,
.
priv_data_size
=
sizeof
(
RTMPContext
),
.
priv_data_size
=
sizeof
(
RTMPContext
),
};
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment