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
9ac421e3
Commit
9ac421e3
authored
Mar 27, 2007
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant assign
Originally committed as revision 8531 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
bad0cefb
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
8 deletions
+0
-8
aasc.c
libavcodec/aasc.c
+0
-1
kmvc.c
libavcodec/kmvc.c
+0
-1
qpeg.c
libavcodec/qpeg.c
+0
-1
truemotion2.c
libavcodec/truemotion2.c
+0
-1
tscc.c
libavcodec/tscc.c
+0
-1
ulti.c
libavcodec/ulti.c
+0
-1
vmnc.c
libavcodec/vmnc.c
+0
-1
zmbv.c
libavcodec/zmbv.c
+0
-1
No files found.
libavcodec/aasc.c
View file @
9ac421e3
...
@@ -52,7 +52,6 @@ static int aasc_decode_init(AVCodecContext *avctx)
...
@@ -52,7 +52,6 @@ static int aasc_decode_init(AVCodecContext *avctx)
s
->
avctx
=
avctx
;
s
->
avctx
=
avctx
;
avctx
->
pix_fmt
=
PIX_FMT_BGR24
;
avctx
->
pix_fmt
=
PIX_FMT_BGR24
;
avctx
->
has_b_frames
=
0
;
s
->
frame
.
data
[
0
]
=
NULL
;
s
->
frame
.
data
[
0
]
=
NULL
;
return
0
;
return
0
;
...
...
libavcodec/kmvc.c
View file @
9ac421e3
...
@@ -346,7 +346,6 @@ static int decode_init(AVCodecContext * avctx)
...
@@ -346,7 +346,6 @@ static int decode_init(AVCodecContext * avctx)
int
i
;
int
i
;
c
->
avctx
=
avctx
;
c
->
avctx
=
avctx
;
avctx
->
has_b_frames
=
0
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
pic
.
data
[
0
]
=
NULL
;
...
...
libavcodec/qpeg.c
View file @
9ac421e3
...
@@ -293,7 +293,6 @@ static int decode_init(AVCodecContext *avctx){
...
@@ -293,7 +293,6 @@ static int decode_init(AVCodecContext *avctx){
a
->
avctx
=
avctx
;
a
->
avctx
=
avctx
;
avctx
->
pix_fmt
=
PIX_FMT_PAL8
;
avctx
->
pix_fmt
=
PIX_FMT_PAL8
;
avctx
->
has_b_frames
=
0
;
a
->
pic
.
data
[
0
]
=
NULL
;
a
->
pic
.
data
[
0
]
=
NULL
;
a
->
refdata
=
av_malloc
(
avctx
->
width
*
avctx
->
height
);
a
->
refdata
=
av_malloc
(
avctx
->
width
*
avctx
->
height
);
...
...
libavcodec/truemotion2.c
View file @
9ac421e3
...
@@ -834,7 +834,6 @@ static int decode_init(AVCodecContext *avctx){
...
@@ -834,7 +834,6 @@ static int decode_init(AVCodecContext *avctx){
l
->
avctx
=
avctx
;
l
->
avctx
=
avctx
;
l
->
pic
.
data
[
0
]
=
NULL
;
l
->
pic
.
data
[
0
]
=
NULL
;
avctx
->
has_b_frames
=
0
;
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
avctx
->
pix_fmt
=
PIX_FMT_YUV420P
;
dsputil_init
(
&
l
->
dsp
,
avctx
);
dsputil_init
(
&
l
->
dsp
,
avctx
);
...
...
libavcodec/tscc.c
View file @
9ac421e3
...
@@ -261,7 +261,6 @@ static int decode_init(AVCodecContext *avctx)
...
@@ -261,7 +261,6 @@ static int decode_init(AVCodecContext *avctx)
int
zret
;
// Zlib return code
int
zret
;
// Zlib return code
c
->
avctx
=
avctx
;
c
->
avctx
=
avctx
;
avctx
->
has_b_frames
=
0
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
height
=
avctx
->
height
;
c
->
height
=
avctx
->
height
;
...
...
libavcodec/ulti.c
View file @
9ac421e3
...
@@ -51,7 +51,6 @@ static int ulti_decode_init(AVCodecContext *avctx)
...
@@ -51,7 +51,6 @@ static int ulti_decode_init(AVCodecContext *avctx)
s
->
height
=
avctx
->
height
;
s
->
height
=
avctx
->
height
;
s
->
blocks
=
(
s
->
width
/
8
)
*
(
s
->
height
/
8
);
s
->
blocks
=
(
s
->
width
/
8
)
*
(
s
->
height
/
8
);
avctx
->
pix_fmt
=
PIX_FMT_YUV410P
;
avctx
->
pix_fmt
=
PIX_FMT_YUV410P
;
avctx
->
has_b_frames
=
0
;
avctx
->
coded_frame
=
(
AVFrame
*
)
&
s
->
frame
;
avctx
->
coded_frame
=
(
AVFrame
*
)
&
s
->
frame
;
s
->
ulti_codebook
=
ulti_codebook
;
s
->
ulti_codebook
=
ulti_codebook
;
...
...
libavcodec/vmnc.c
View file @
9ac421e3
...
@@ -463,7 +463,6 @@ static int decode_init(AVCodecContext *avctx)
...
@@ -463,7 +463,6 @@ static int decode_init(AVCodecContext *avctx)
VmncContext
*
const
c
=
(
VmncContext
*
)
avctx
->
priv_data
;
VmncContext
*
const
c
=
(
VmncContext
*
)
avctx
->
priv_data
;
c
->
avctx
=
avctx
;
c
->
avctx
=
avctx
;
avctx
->
has_b_frames
=
0
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
width
=
avctx
->
width
;
c
->
width
=
avctx
->
width
;
...
...
libavcodec/zmbv.c
View file @
9ac421e3
...
@@ -612,7 +612,6 @@ static int decode_init(AVCodecContext *avctx)
...
@@ -612,7 +612,6 @@ static int decode_init(AVCodecContext *avctx)
int
zret
;
// Zlib return code
int
zret
;
// Zlib return code
c
->
avctx
=
avctx
;
c
->
avctx
=
avctx
;
avctx
->
has_b_frames
=
0
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
pic
.
data
[
0
]
=
NULL
;
c
->
width
=
avctx
->
width
;
c
->
width
=
avctx
->
width
;
...
...
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