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
7408ad05
Commit
7408ad05
authored
Jun 09, 2003
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
10l
Originally committed as revision 1940 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
5e20f836
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
cabac.h
libavcodec/cabac.h
+3
-3
avienc.c
libavformat/avienc.c
+1
-0
No files found.
libavcodec/cabac.h
View file @
7408ad05
...
...
@@ -43,9 +43,9 @@ typedef struct CABACContext{
PutBitContext
pb
;
}
CABACContext
;
const
uint8_t
ff_h264_lps_range
[
64
][
4
];
const
uint8_t
ff_h264_mps_state
[
64
];
const
uint8_t
ff_h264_lps_state
[
64
];
extern
const
uint8_t
ff_h264_lps_range
[
64
][
4
];
extern
const
uint8_t
ff_h264_mps_state
[
64
];
extern
const
uint8_t
ff_h264_lps_state
[
64
];
void
ff_init_cabac_encoder
(
CABACContext
*
c
,
uint8_t
*
buf
,
int
buf_size
);
void
ff_init_cabac_decoder
(
CABACContext
*
c
,
uint8_t
*
buf
,
int
buf_size
);
...
...
libavformat/avienc.c
View file @
7408ad05
...
...
@@ -164,6 +164,7 @@ const CodecTag codec_bmp_tags[] = {
{
CODEC_ID_INDEO3
,
MKTAG
(
'I'
,
'V'
,
'3'
,
'2'
)
},
{
CODEC_ID_VP3
,
MKTAG
(
'V'
,
'P'
,
'3'
,
'1'
)
},
{
CODEC_ID_ASV1
,
MKTAG
(
'A'
,
'S'
,
'V'
,
'1'
)
},
{
CODEC_ID_FFV1
,
MKTAG
(
'F'
,
'F'
,
'V'
,
'1'
)
},
{
0
,
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