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
28f9858c
Commit
28f9858c
authored
Apr 18, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/gif: simplify streams type checking.
parent
978e3734
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
25 deletions
+13
-25
gif.c
libavformat/gif.c
+13
-25
No files found.
libavformat/gif.c
View file @
28f9858c
...
@@ -104,32 +104,23 @@ static int gif_write_header(AVFormatContext *s)
...
@@ -104,32 +104,23 @@ static int gif_write_header(AVFormatContext *s)
{
{
GIFContext
*
gif
=
s
->
priv_data
;
GIFContext
*
gif
=
s
->
priv_data
;
AVIOContext
*
pb
=
s
->
pb
;
AVIOContext
*
pb
=
s
->
pb
;
AVCodecContext
*
enc
,
*
video_enc
;
AVCodecContext
*
video_enc
;
int
i
,
width
,
height
/*, rate*/
;
int
width
,
height
;
uint32_t
palette
[
AVPALETTE_COUNT
];
uint32_t
palette
[
AVPALETTE_COUNT
];
/* XXX: do we reject audio streams or just ignore them ?
if
(
s
->
nb_streams
!=
1
||
!
s
->
streams
[
0
]
->
codec
||
* if (s->nb_streams > 1)
s
->
streams
[
0
]
->
codec
->
codec_type
!=
AVMEDIA_TYPE_VIDEO
)
{
* return -1;
av_log
(
s
,
AV_LOG_ERROR
,
*/
"GIF supports only a single video stream.
\n
"
);
return
AVERROR
(
EINVAL
);
}
gif
->
time
=
0
;
gif
->
time
=
0
;
gif
->
file_time
=
0
;
gif
->
file_time
=
0
;
video_enc
=
NULL
;
video_enc
=
s
->
streams
[
0
]
->
codec
;
for
(
i
=
0
;
i
<
s
->
nb_streams
;
i
++
)
{
enc
=
s
->
streams
[
i
]
->
codec
;
if
(
enc
->
codec_type
!=
AVMEDIA_TYPE_AUDIO
)
video_enc
=
enc
;
}
if
(
!
video_enc
)
{
av_free
(
gif
);
return
-
1
;
}
else
{
width
=
video_enc
->
width
;
width
=
video_enc
->
width
;
height
=
video_enc
->
height
;
height
=
video_enc
->
height
;
// rate = video_enc->time_base.den;
}
if
(
avpriv_set_systematic_pal2
(
palette
,
video_enc
->
pix_fmt
)
<
0
)
{
if
(
avpriv_set_systematic_pal2
(
palette
,
video_enc
->
pix_fmt
)
<
0
)
{
av_assert0
(
video_enc
->
pix_fmt
==
AV_PIX_FMT_PAL8
);
av_assert0
(
video_enc
->
pix_fmt
==
AV_PIX_FMT_PAL8
);
...
@@ -174,9 +165,6 @@ static int gif_write_video(AVFormatContext *s, AVCodecContext *enc,
...
@@ -174,9 +165,6 @@ static int gif_write_video(AVFormatContext *s, AVCodecContext *enc,
static
int
gif_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
static
int
gif_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
{
AVCodecContext
*
codec
=
s
->
streams
[
pkt
->
stream_index
]
->
codec
;
AVCodecContext
*
codec
=
s
->
streams
[
pkt
->
stream_index
]
->
codec
;
if
(
codec
->
codec_type
==
AVMEDIA_TYPE_AUDIO
)
return
0
;
/* just ignore audio */
else
return
gif_write_video
(
s
,
codec
,
pkt
->
data
,
pkt
->
size
);
return
gif_write_video
(
s
,
codec
,
pkt
->
data
,
pkt
->
size
);
}
}
...
...
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