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
fdf9296d
Commit
fdf9296d
authored
Jul 26, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sgienc: remove unused SgiContext
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
be7d6710
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
sgienc.c
libavcodec/sgienc.c
+1
-13
No files found.
libavcodec/sgienc.c
View file @
fdf9296d
...
...
@@ -28,36 +28,25 @@
#define SGI_SINGLE_CHAN 2
#define SGI_MULTI_CHAN 3
typedef
struct
SgiContext
{
AVFrame
picture
;
}
SgiContext
;
static
av_cold
int
encode_init
(
AVCodecContext
*
avctx
)
{
SgiContext
*
s
=
avctx
->
priv_data
;
if
(
avctx
->
width
>
65535
||
avctx
->
height
>
65535
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"SGI does not support resolutions above 65535x65535
\n
"
);
return
-
1
;
}
avcodec_get_frame_defaults
(
&
s
->
picture
);
avctx
->
coded_frame
=
&
s
->
picture
;
return
0
;
}
static
int
encode_frame
(
AVCodecContext
*
avctx
,
AVPacket
*
pkt
,
const
AVFrame
*
frame
,
int
*
got_packet
)
{
SgiContext
*
s
=
avctx
->
priv_data
;
AVFrame
*
const
p
=
&
s
->
picture
;
AVFrame
*
const
p
=
(
AVFrame
*
)
frame
;
uint8_t
*
offsettab
,
*
lengthtab
,
*
in_buf
,
*
encode_buf
,
*
buf
;
int
x
,
y
,
z
,
length
,
tablesize
,
ret
;
unsigned
int
width
,
height
,
depth
,
dimension
,
bytes_per_channel
,
pixmax
,
put_be
;
unsigned
char
*
end_buf
;
*
p
=
*
frame
;
p
->
pict_type
=
AV_PICTURE_TYPE_I
;
p
->
key_frame
=
1
;
...
...
@@ -214,7 +203,6 @@ AVCodec ff_sgi_encoder = {
.
name
=
"sgi"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
AV_CODEC_ID_SGI
,
.
priv_data_size
=
sizeof
(
SgiContext
),
.
init
=
encode_init
,
.
encode2
=
encode_frame
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
...
...
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