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
893816ba
Commit
893816ba
authored
Apr 09, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avio: cosmetics, vertically align comments.
parent
72d4405b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
avio.h
libavformat/avio.h
+5
-5
No files found.
libavformat/avio.h
View file @
893816ba
...
...
@@ -50,10 +50,10 @@ typedef struct {
int
(
*
read_packet
)(
void
*
opaque
,
uint8_t
*
buf
,
int
buf_size
);
int
(
*
write_packet
)(
void
*
opaque
,
uint8_t
*
buf
,
int
buf_size
);
int64_t
(
*
seek
)(
void
*
opaque
,
int64_t
offset
,
int
whence
);
int64_t
pos
;
/**< position in the file of the current buffer */
int
must_flush
;
/**< true if the next seek should flush */
int
eof_reached
;
/**< true if eof reached */
int
write_flag
;
/**< true if open for writing */
int64_t
pos
;
/**< position in the file of the current buffer */
int
must_flush
;
/**< true if the next seek should flush */
int
eof_reached
;
/**< true if eof reached */
int
write_flag
;
/**< true if open for writing */
#if FF_API_OLD_AVIO
attribute_deprecated
int
is_streamed
;
#endif
...
...
@@ -61,7 +61,7 @@ typedef struct {
unsigned
long
checksum
;
unsigned
char
*
checksum_ptr
;
unsigned
long
(
*
update_checksum
)(
unsigned
long
checksum
,
const
uint8_t
*
buf
,
unsigned
int
size
);
int
error
;
///< contains the error code or 0 if no error happened
int
error
;
/**< contains the error code or 0 if no error happened */
int
(
*
read_pause
)(
void
*
opaque
,
int
pause
);
int64_t
(
*
read_seek
)(
void
*
opaque
,
int
stream_index
,
int64_t
timestamp
,
int
flags
);
...
...
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