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
8b9bda1c
Commit
8b9bda1c
authored
Jun 27, 2008
by
Alexander Strange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove commented-out code.
Originally committed as revision 14009 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2f3b1b80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
mdec.c
libavcodec/mdec.c
+1
-12
No files found.
libavcodec/mdec.c
View file @
8b9bda1c
...
...
@@ -31,9 +31,6 @@
#include "dsputil.h"
#include "mpegvideo.h"
//#undef NDEBUG
//#include <assert.h>
typedef
struct
MDECContext
{
AVCodecContext
*
avctx
;
DSPContext
dsp
;
...
...
@@ -90,7 +87,6 @@ static inline int mdec_decode_block_intra(MDECContext *a, DCTELEM *block, int n)
i
+=
run
;
j
=
scantable
[
i
];
level
=
(
level
*
qscale
*
quant_matrix
[
j
])
>>
3
;
// level= (level-1)|1;
level
=
(
level
^
SHOW_SBITS
(
re
,
&
a
->
gb
,
1
))
-
SHOW_SBITS
(
re
,
&
a
->
gb
,
1
);
LAST_SKIP_BITS
(
re
,
&
a
->
gb
,
1
);
}
else
{
...
...
@@ -192,8 +188,6 @@ static int decode_frame(AVCodecContext *avctx,
a
->
last_dc
[
1
]
=
a
->
last_dc
[
2
]
=
128
;
// printf("qscale:%d (0x%X), version:%d (0x%X)\n", a->qscale, a->qscale, a->version, a->version);
for
(
a
->
mb_x
=
0
;
a
->
mb_x
<
a
->
mb_width
;
a
->
mb_x
++
){
for
(
a
->
mb_y
=
0
;
a
->
mb_y
<
a
->
mb_height
;
a
->
mb_y
++
){
if
(
decode_mb
(
a
,
a
->
block
)
<
0
)
...
...
@@ -233,12 +227,7 @@ static av_cold int decode_init(AVCodecContext *avctx){
mdec_common_init
(
avctx
);
init_vlcs
();
ff_init_scantable
(
a
->
dsp
.
idct_permutation
,
&
a
->
scantable
,
ff_zigzag_direct
);
/*
for(i=0; i<64; i++){
int index= ff_zigzag_direct[i];
a->intra_matrix[i]= 64*ff_mpeg1_default_intra_matrix[index] / a->inv_qscale;
}
*/
p
->
qstride
=
a
->
mb_width
;
p
->
qscale_table
=
av_mallocz
(
p
->
qstride
*
a
->
mb_height
);
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
...
...
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