Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
893816ba
Commit
893816ba
authored
14 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
avio: cosmetics, vertically align comments.
parent
72d4405b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/avio.h
+5
-5
5 additions, 5 deletions
libavformat/avio.h
with
5 additions
and
5 deletions
libavformat/avio.h
+
5
−
5
View file @
893816ba
...
@@ -50,10 +50,10 @@ typedef struct {
...
@@ -50,10 +50,10 @@ typedef struct {
int
(
*
read_packet
)(
void
*
opaque
,
uint8_t
*
buf
,
int
buf_size
);
int
(
*
read_packet
)(
void
*
opaque
,
uint8_t
*
buf
,
int
buf_size
);
int
(
*
write_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
(
*
seek
)(
void
*
opaque
,
int64_t
offset
,
int
whence
);
int64_t
pos
;
/**< position in the file of the current buffer */
int64_t
pos
;
/**< position in the file of the current buffer */
int
must_flush
;
/**< true if the next seek should flush */
int
must_flush
;
/**< true if the next seek should flush */
int
eof_reached
;
/**< true if eof reached */
int
eof_reached
;
/**< true if eof reached */
int
write_flag
;
/**< true if open for writing */
int
write_flag
;
/**< true if open for writing */
#if FF_API_OLD_AVIO
#if FF_API_OLD_AVIO
attribute_deprecated
int
is_streamed
;
attribute_deprecated
int
is_streamed
;
#endif
#endif
...
@@ -61,7 +61,7 @@ typedef struct {
...
@@ -61,7 +61,7 @@ typedef struct {
unsigned
long
checksum
;
unsigned
long
checksum
;
unsigned
char
*
checksum_ptr
;
unsigned
char
*
checksum_ptr
;
unsigned
long
(
*
update_checksum
)(
unsigned
long
checksum
,
const
uint8_t
*
buf
,
unsigned
int
size
);
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
);
int
(
*
read_pause
)(
void
*
opaque
,
int
pause
);
int64_t
(
*
read_seek
)(
void
*
opaque
,
int
stream_index
,
int64_t
(
*
read_seek
)(
void
*
opaque
,
int
stream_index
,
int64_t
timestamp
,
int
flags
);
int64_t
timestamp
,
int
flags
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment