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
e42dba48
Commit
e42dba48
authored
Apr 07, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typos/grammar
Originally committed as revision 8641 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
911406f2
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
15 additions
and
15 deletions
+15
-15
bitstream.h
libavcodec/bitstream.h
+1
-1
h264.c
libavcodec/h264.c
+1
-1
mpeg12.c
libavcodec/mpeg12.c
+1
-1
mpegvideo.h
libavcodec/mpegvideo.h
+1
-1
parser.c
libavcodec/parser.c
+1
-1
parser.h
libavcodec/parser.h
+1
-1
mpegvideo_altivec.c
libavcodec/ppc/mpegvideo_altivec.c
+1
-1
mpegvideo_mmi.c
libavcodec/ps2/mpegvideo_mmi.c
+1
-1
ratecontrol.c
libavcodec/ratecontrol.c
+1
-1
avformat.h
libavformat/avformat.h
+2
-2
http.c
libavformat/http.c
+2
-2
mtv.c
libavformat/mtv.c
+1
-1
postprocess_template.c
libpostproc/postprocess_template.c
+1
-1
No files found.
libavcodec/bitstream.h
View file @
e42dba48
...
...
@@ -873,7 +873,7 @@ void free_vlc(VLC *vlc);
* parses a vlc code, faster then get_vlc()
* @param bits is the number of bits which will be read at once, must be
* identical to nb_bits in init_vlc()
* @param max_depth is the number of times bits bits must be read
ed to complet
ly
* @param max_depth is the number of times bits bits must be read
to complete
ly
* read the longest vlc code
* = (max_vlc_length + bits - 1) / bits
*/
...
...
libavcodec/h264.c
View file @
e42dba48
...
...
@@ -8133,7 +8133,7 @@ static int decode_nal_units(H264Context *h, uint8_t *buf, int buf_size){
}
else
{
// start code prefix search
for
(;
buf_index
+
3
<
buf_size
;
buf_index
++
){
//
this should allways succeed in the first iteration
//
This should always succeed in the first iteration.
if
(
buf
[
buf_index
]
==
0
&&
buf
[
buf_index
+
1
]
==
0
&&
buf
[
buf_index
+
2
]
==
1
)
break
;
}
...
...
libavcodec/mpeg12.c
View file @
e42dba48
...
...
@@ -1287,7 +1287,7 @@ static int mpeg_decode_mb(MpegEncContext *s,
}
else
{
assert
(
mb_type
&
MB_TYPE_L0L1
);
//FIXME decide if MBs in field pictures are MB_TYPE_INTERLACED
/* get addition
n
al motion vector type */
/* get additional motion vector type */
if
(
s
->
frame_pred_frame_dct
)
motion_type
=
MT_FRAME
;
else
{
...
...
libavcodec/mpegvideo.h
View file @
e42dba48
...
...
@@ -381,7 +381,7 @@ typedef struct MpegEncContext {
MotionEstContext
me
;
int
no_rounding
;
/**< apply no rounding to motion compensation (MPEG4, msmpeg4, ...)
for b-frames rounding mode is al
l
ways 0 */
for b-frames rounding mode is always 0 */
int
hurry_up
;
/**< when set to 1 during decoding, b frames will be skipped
when set to 2 idct/dequant will be skipped too */
...
...
libavcodec/parser.c
View file @
e42dba48
...
...
@@ -230,7 +230,7 @@ int ff_combine_frame(ParseContext *pc, int next, uint8_t **buf, int *buf_size)
}
#endif
/*
copy overreaded bytes from last frame into buffer
*/
/*
Copy overread bytes from last frame into buffer.
*/
for
(;
pc
->
overread
>
0
;
pc
->
overread
--
){
pc
->
buffer
[
pc
->
index
++
]
=
pc
->
buffer
[
pc
->
overread_index
++
];
}
...
...
libavcodec/parser.h
View file @
e42dba48
...
...
@@ -31,7 +31,7 @@ typedef struct ParseContext{
uint32_t
state
;
///< contains the last few bytes in MSB order
int
frame_start_found
;
int
overread
;
///< the number of bytes which where irreversibly read from the next frame
int
overread_index
;
///< the index into ParseContext.buffer of the overread
ed
bytes
int
overread_index
;
///< the index into ParseContext.buffer of the overread bytes
}
ParseContext
;
struct
MpegEncContext
;
...
...
libavcodec/ppc/mpegvideo_altivec.c
View file @
e42dba48
...
...
@@ -515,7 +515,7 @@ POWERPC_PERF_START_COUNT(altivec_dct_unquantize_h263_num, 1);
}
else
qadd
=
0
;
i
=
1
;
nCoeffs
=
63
;
//does not al
l
ways use zigzag table
nCoeffs
=
63
;
//does not always use zigzag table
}
else
{
i
=
0
;
nCoeffs
=
s
->
intra_scantable
.
raster_end
[
s
->
block_last_index
[
n
]
];
...
...
libavcodec/ps2/mpegvideo_mmi.c
View file @
e42dba48
...
...
@@ -45,7 +45,7 @@ static void dct_unquantize_h263_mmi(MpegEncContext *s,
qadd
=
0
;
level
=
block
[
0
];
}
nCoeffs
=
63
;
//does not al
l
ways use zigzag table
nCoeffs
=
63
;
//does not always use zigzag table
}
else
{
nCoeffs
=
s
->
intra_scantable
.
raster_end
[
s
->
block_last_index
[
n
]
];
}
...
...
libavcodec/ratecontrol.c
View file @
e42dba48
...
...
@@ -31,7 +31,7 @@
#include "mpegvideo.h"
#include "eval.h"
#undef NDEBUG //
allways check asserts, the speed effect is far too small to disable them
#undef NDEBUG //
Always check asserts, the speed effect is far too small to disable them.
#include <assert.h>
#ifndef M_E
...
...
libavformat/avformat.h
View file @
e42dba48
...
...
@@ -204,7 +204,7 @@ typedef struct AVInputFormat {
int
(
*
read_probe
)(
AVProbeData
*
);
/** read the format header and initialize the AVFormatContext
structure. Return 0 if OK. 'ap' if non NULL contains
addition
n
al paramters. Only used in raw format right
additional paramters. Only used in raw format right
now. 'av_new_stream' should be called to create new streams. */
int
(
*
read_header
)(
struct
AVFormatContext
*
,
AVFormatParameters
*
ap
);
...
...
@@ -526,7 +526,7 @@ int av_open_input_stream(AVFormatContext **ic_ptr,
* @param filename filename to open.
* @param fmt if non NULL, force the file format to use
* @param buf_size optional buffer size (zero if default is OK)
* @param ap addition
n
al parameters needed when opening the file (NULL if default)
* @param ap additional parameters needed when opening the file (NULL if default)
* @return 0 if OK. AVERROR_xxx otherwise.
*/
int
av_open_input_file
(
AVFormatContext
**
ic_ptr
,
const
char
*
filename
,
...
...
libavformat/http.c
View file @
e42dba48
...
...
@@ -24,8 +24,8 @@
#include "base64.h"
/* XXX: POST protocol is not complet
ly implemented because ffmpeg use
only a subset of it */
/* XXX: POST protocol is not complet
ely implemented because ffmpeg uses
only a subset of it
.
*/
//#define DEBUG
...
...
libavformat/mtv.c
View file @
e42dba48
...
...
@@ -89,7 +89,7 @@ static int mtv_read_header(AVFormatContext *s, AVFormatParameters *ap)
/* FIXME Add sanity check here */
/* first packet is al
l
ways audio*/
/* first packet is always audio*/
mtv
->
audio_packet_count
=
1
;
...
...
libpostproc/postprocess_template.c
View file @
e42dba48
...
...
@@ -3415,7 +3415,7 @@ static void RENAME(postProcess)(uint8_t src[], int srcStride, uint8_t dst[], int
sum
+=
yHistogram
[
i
];
}
/*
we allways get a completly black picture first
*/
/*
We always get a completely black picture first.
*/
maxClipped
=
(
uint64_t
)(
sum
*
c
.
ppMode
.
maxClippedThreshold
);
clipped
=
sum
;
...
...
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