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
864ff8c1
Commit
864ff8c1
authored
Jun 04, 2007
by
Ramiro Polla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Typos
Originally committed as revision 9213 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
05abfce9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
avformat.h
libavformat/avformat.h
+8
-8
No files found.
libavformat/avformat.h
View file @
864ff8c1
...
...
@@ -64,7 +64,7 @@ void av_destruct_packet(AVPacket *pkt);
void
av_init_packet
(
AVPacket
*
pkt
);
/**
* Allocate the payload of a packet and intialize
d
its fields to default values.
* Allocate the payload of a packet and intialize its fields to default values.
*
* @param pkt packet
* @param size wanted payload size
...
...
@@ -73,7 +73,7 @@ void av_init_packet(AVPacket *pkt);
int
av_new_packet
(
AVPacket
*
pkt
,
int
size
);
/**
* Allocate and read the payload of a packet and intialize
d
its fields to default values.
* Allocate and read the payload of a packet and intialize its fields to default values.
*
* @param pkt packet
* @param size wanted payload size
...
...
@@ -143,7 +143,7 @@ typedef struct AVFormatParameters {
int
mpeg2ts_raw
:
1
;
/**< force raw MPEG2 transport stream output, if possible */
int
mpeg2ts_compute_pcr
:
1
;
/**< compute exact PCR for each transport
stream packet (only meaningful if
mpeg2ts_raw is TRUE */
mpeg2ts_raw is TRUE
)
*/
int
initial_pause
:
1
;
/**< do not begin to play the stream
immediately (RTSP only) */
int
prealloced_context
:
1
;
...
...
@@ -195,7 +195,7 @@ typedef struct AVInputFormat {
const
char
*
long_name
;
/** size of private data so that it can be allocated in the wrapper */
int
priv_data_size
;
/** tell if a given file has a chance of being pars
ing
by this format */
/** tell if a given file has a chance of being pars
ed
by this format */
int
(
*
read_probe
)(
AVProbeData
*
);
/** read the format header and initialize the AVFormatContext
structure. Return 0 if OK. 'ap' if non NULL contains
...
...
@@ -270,7 +270,7 @@ typedef struct AVStream {
/**
* real base frame rate of the stream.
* this is the lowest framerate with which all timestamps can be
* represented accurately (its the least common multiple of all
* represented accurately (it
i
s the least common multiple of all
* framerates in the stream), Note, this value is just a guess!
* for example if the timebase is 1/90000 and all frames have either
* approximately 3600 or 1800 timer ticks then r_frame_rate will be 50/1
...
...
@@ -519,7 +519,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
AVInputFormat
*
fmt
,
AVFormatParameters
*
ap
);
/**
* Open a media file as input. The codec are not opened. Only the file
* Open a media file as input. The codec
s
are not opened. Only the file
* header (if present) is read.
*
* @param ic_ptr the opened media file handle is put here
...
...
@@ -553,7 +553,7 @@ int av_find_stream_info(AVFormatContext *ic);
/**
* Read a transport packet from a media file.
*
* This function is
a
bsolete and should never be used.
* This function is
o
bsolete and should never be used.
* Use av_read_frame() instead.
*
* @param s media file handle
...
...
@@ -720,7 +720,7 @@ int av_write_frame(AVFormatContext *s, AVPacket *pkt);
*
* The packet must contain one audio or video frame.
* If the packets are already correctly interleaved the application should
* call av_write_frame() instead as it
s slightly faster, it
s also important
* call av_write_frame() instead as it
is slightly faster, it i
s also important
* to keep in mind that completly non interleaved input will need huge amounts
* of memory to interleave with this, so its prefereable to interleave at the
* demuxer level
...
...
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