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
eef3ea8c
Commit
eef3ea8c
authored
Nov 13, 2011
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename remaining ByteIOContext to AVIOContext.
parent
73af8ea3
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
act.c
libavformat/act.c
+2
-2
bintext.c
libavformat/bintext.c
+5
-5
bit.c
libavformat/bit.c
+1
-1
mxfdec.c
libavformat/mxfdec.c
+1
-1
No files found.
libavformat/act.c
View file @
eef3ea8c
...
...
@@ -63,7 +63,7 @@ static int read_header(AVFormatContext *s,
AVFormatParameters
*
ap
)
{
ACTContext
*
ctx
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
int
size
;
AVStream
*
st
;
...
...
@@ -111,7 +111,7 @@ static int read_packet(AVFormatContext *s,
AVPacket
*
pkt
)
{
ACTContext
*
ctx
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
int
ret
;
int
frame_size
=
s
->
streams
[
0
]
->
codec
->
sample_rate
==
8000
?
10
:
22
;
...
...
libavformat/bintext.c
View file @
eef3ea8c
...
...
@@ -59,7 +59,7 @@ static const uint8_t next_magic[]={
static
int
next_tag_read
(
AVFormatContext
*
avctx
,
uint64_t
*
fsize
)
{
Byte
IOContext
*
pb
=
avctx
->
pb
;
AV
IOContext
*
pb
=
avctx
->
pb
;
char
buf
[
36
];
int
len
;
uint64_t
start_pos
=
url_fsize
(
pb
)
-
256
;
...
...
@@ -126,7 +126,7 @@ static int bintext_read_header(AVFormatContext *s,
AVFormatParameters
*
ap
)
{
BinDemuxContext
*
bin
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
AVStream
*
st
=
init_stream
(
s
,
ap
);
if
(
!
st
)
...
...
@@ -171,7 +171,7 @@ static int xbin_read_header(AVFormatContext *s,
AVFormatParameters
*
ap
)
{
BinDemuxContext
*
bin
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
char
fontheight
,
flags
;
AVStream
*
st
=
init_stream
(
s
,
ap
);
...
...
@@ -215,7 +215,7 @@ static int adf_read_header(AVFormatContext *s,
AVFormatParameters
*
ap
)
{
BinDemuxContext
*
bin
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
AVStream
*
st
;
if
(
get_byte
(
pb
)
!=
1
)
...
...
@@ -272,7 +272,7 @@ static int idf_read_header(AVFormatContext *s,
AVFormatParameters
*
ap
)
{
BinDemuxContext
*
bin
=
s
->
priv_data
;
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
AVStream
*
st
;
int
got_width
=
0
;
...
...
libavformat/bit.c
View file @
eef3ea8c
...
...
@@ -127,7 +127,7 @@ static int write_header(AVFormatContext *s)
static
int
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
Byte
IOContext
*
pb
=
s
->
pb
;
AV
IOContext
*
pb
=
s
->
pb
;
GetBitContext
gb
;
int
i
;
...
...
libavformat/mxfdec.c
View file @
eef3ea8c
...
...
@@ -406,7 +406,7 @@ static int mxf_read_primer_pack(void *arg, AVIOContext *pb, int tag, int size, U
return
0
;
}
static
int
mxf_read_partition_pack
(
void
*
arg
,
Byte
IOContext
*
pb
,
int
tag
,
int
size
,
UID
uid
)
static
int
mxf_read_partition_pack
(
void
*
arg
,
AV
IOContext
*
pb
,
int
tag
,
int
size
,
UID
uid
)
{
MXFContext
*
mxf
=
arg
;
MXFPartition
*
partition
;
...
...
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