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
d0b53d05
Commit
d0b53d05
authored
Dec 02, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some spelling mistakes.
Originally committed as revision 11125 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
74971185
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
apedec.c
libavcodec/apedec.c
+1
-1
mpegvideo.h
libavcodec/mpegvideo.h
+2
-2
rtp.c
libavformat/rtp.c
+1
-1
No files found.
libavcodec/apedec.c
View file @
d0b53d05
...
...
@@ -514,7 +514,7 @@ static void init_predictor_decoder(APEContext * ctx)
memset
(
p
->
historybuffer
,
0
,
PREDICTOR_SIZE
*
sizeof
(
int32_t
));
p
->
buf
=
p
->
historybuffer
;
/* Initialize and zero the co
-
efficients */
/* Initialize and zero the coefficients */
memcpy
(
p
->
coeffsA
[
0
],
initial_coeffs
,
sizeof
(
initial_coeffs
));
memcpy
(
p
->
coeffsA
[
1
],
initial_coeffs
,
sizeof
(
initial_coeffs
));
memset
(
p
->
coeffsB
,
0
,
sizeof
(
p
->
coeffsB
));
...
...
libavcodec/mpegvideo.h
View file @
d0b53d05
...
...
@@ -94,7 +94,7 @@ typedef struct ScanTable{
uint8_t
permutated
[
64
];
uint8_t
raster_end
[
64
];
#ifdef ARCH_POWERPC
/** Used by dct_quantize_al
it
vec to find last-non-zero */
/** Used by dct_quantize_al
ti
vec to find last-non-zero */
DECLARE_ALIGNED_8
(
uint8_t
,
inverse
[
64
]);
#endif
}
ScanTable
;
...
...
@@ -111,7 +111,7 @@ typedef struct Picture{
uint8_t
*
interpolated
[
3
];
int16_t
(
*
motion_val_base
[
2
])[
2
];
uint32_t
*
mb_type_base
;
#define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if theres just one type
#define MB_TYPE_INTRA MB_TYPE_INTRA4x4 //default mb_type if there
i
s just one type
#define IS_INTRA4x4(a) ((a)&MB_TYPE_INTRA4x4)
#define IS_INTRA16x16(a) ((a)&MB_TYPE_INTRA16x16)
#define IS_PCM(a) ((a)&MB_TYPE_INTRA_PCM)
...
...
libavformat/rtp.c
View file @
d0b53d05
...
...
@@ -767,7 +767,7 @@ static int rtp_write_header(AVFormatContext *s1)
payload_type
=
RTP_PT_PRIVATE
;
/* private payload type */
s
->
payload_type
=
payload_type
;
// following 2 FIXM
ies could be set based on the current time, theres normaly no info leak, as rtp will likely be transmitted immedeat
ly
// following 2 FIXM
Es could be set based on the current time, there is normally no info leak, as RTP will likely be transmitted immediate
ly
s
->
base_timestamp
=
0
;
/* FIXME: was random(), what should this be? */
s
->
timestamp
=
s
->
base_timestamp
;
s
->
cur_timestamp
=
0
;
...
...
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