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
c58222c5
Commit
c58222c5
authored
Oct 13, 2003
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
10l
Originally committed as revision 2368 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
431f2172
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
h264.c
libavcodec/h264.c
+1
-1
wmv2.c
libavcodec/wmv2.c
+1
-1
No files found.
libavcodec/h264.c
View file @
c58222c5
...
...
@@ -4256,7 +4256,7 @@ int main(){
}
init_put_bits(&pb, temp, SIZE
, NULL, NULL
);
init_put_bits(&pb, temp, SIZE);
printf("testing signed exp golomb\n");
for(i=0; i<COUNT; i++){
START_TIMER
...
...
libavcodec/wmv2.c
View file @
c58222c5
...
...
@@ -64,7 +64,7 @@ static int encode_ext_header(Wmv2Context *w){
PutBitContext
pb
;
int
code
;
init_put_bits
(
&
pb
,
s
->
avctx
->
extradata
,
s
->
avctx
->
extradata_size
,
NULL
,
NULL
);
init_put_bits
(
&
pb
,
s
->
avctx
->
extradata
,
s
->
avctx
->
extradata_size
);
put_bits
(
&
pb
,
5
,
s
->
avctx
->
frame_rate
/
s
->
avctx
->
frame_rate_base
);
//yes 29.97 -> 29
put_bits
(
&
pb
,
11
,
FFMIN
(
s
->
bit_rate
/
1024
,
2047
));
...
...
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