Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
ac6d020f
Commit
ac6d020f
authored
14 years ago
by
Pascal Massimino
Browse files
Options
Downloads
Patches
Plain Diff
cleanup image2pipe_{de}muxer fields
Originally committed as revision 25531 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
96ea6ad2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavformat/img2.c
+37
-42
37 additions, 42 deletions
libavformat/img2.c
with
37 additions
and
42 deletions
libavformat/img2.c
+
37
−
42
View file @
ac6d020f
...
@@ -171,7 +171,7 @@ static int find_image_range(int *pfirst_index, int *plast_index,
...
@@ -171,7 +171,7 @@ static int find_image_range(int *pfirst_index, int *plast_index,
}
}
static
int
image
_probe
(
AVProbeData
*
p
)
static
int
read
_probe
(
AVProbeData
*
p
)
{
{
if
(
p
->
filename
&&
av_str2id
(
img_tags
,
p
->
filename
))
{
if
(
p
->
filename
&&
av_str2id
(
img_tags
,
p
->
filename
))
{
if
(
av_filename_number_test
(
p
->
filename
))
if
(
av_filename_number_test
(
p
->
filename
))
...
@@ -186,7 +186,7 @@ enum CodecID av_guess_image2_codec(const char *filename){
...
@@ -186,7 +186,7 @@ enum CodecID av_guess_image2_codec(const char *filename){
return
av_str2id
(
img_tags
,
filename
);
return
av_str2id
(
img_tags
,
filename
);
}
}
static
int
img_
read_header
(
AVFormatContext
*
s1
,
AVFormatParameters
*
ap
)
static
int
read_header
(
AVFormatContext
*
s1
,
AVFormatParameters
*
ap
)
{
{
VideoData
*
s
=
s1
->
priv_data
;
VideoData
*
s
=
s1
->
priv_data
;
int
first_index
,
last_index
;
int
first_index
,
last_index
;
...
@@ -249,7 +249,7 @@ static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap)
...
@@ -249,7 +249,7 @@ static int img_read_header(AVFormatContext *s1, AVFormatParameters *ap)
return
0
;
return
0
;
}
}
static
int
img_
read_packet
(
AVFormatContext
*
s1
,
AVPacket
*
pkt
)
static
int
read_packet
(
AVFormatContext
*
s1
,
AVPacket
*
pkt
)
{
{
VideoData
*
s
=
s1
->
priv_data
;
VideoData
*
s
=
s1
->
priv_data
;
char
filename
[
1024
];
char
filename
[
1024
];
...
@@ -320,7 +320,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
...
@@ -320,7 +320,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
/******************************************************/
/******************************************************/
/* image output */
/* image output */
static
int
img_
write_header
(
AVFormatContext
*
s
)
static
int
write_header
(
AVFormatContext
*
s
)
{
{
VideoData
*
img
=
s
->
priv_data
;
VideoData
*
img
=
s
->
priv_data
;
...
@@ -336,7 +336,7 @@ static int img_write_header(AVFormatContext *s)
...
@@ -336,7 +336,7 @@ static int img_write_header(AVFormatContext *s)
return
0
;
return
0
;
}
}
static
int
img_
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
static
int
write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
)
{
{
VideoData
*
img
=
s
->
priv_data
;
VideoData
*
img
=
s
->
priv_data
;
ByteIOContext
*
pb
[
3
];
ByteIOContext
*
pb
[
3
];
...
@@ -413,56 +413,51 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -413,56 +413,51 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
/* input */
/* input */
#if CONFIG_IMAGE2_DEMUXER
#if CONFIG_IMAGE2_DEMUXER
AVInputFormat
image2_demuxer
=
{
AVInputFormat
image2_demuxer
=
{
"image2"
,
.
name
=
"image2"
,
NULL_IF_CONFIG_SMALL
(
"image2 sequence"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"image2 sequence"
),
sizeof
(
VideoData
),
.
priv_data_size
=
sizeof
(
VideoData
),
image_probe
,
.
read_probe
=
read_probe
,
img_read_header
,
.
read_header
=
read_header
,
img_read_packet
,
.
read_packet
=
read_packet
,
NULL
,
.
flags
=
AVFMT_NOFILE
,
NULL
,
NULL
,
AVFMT_NOFILE
,
};
};
#endif
#endif
#if CONFIG_IMAGE2PIPE_DEMUXER
#if CONFIG_IMAGE2PIPE_DEMUXER
AVInputFormat
image2pipe_demuxer
=
{
AVInputFormat
image2pipe_demuxer
=
{
"image2pipe"
,
.
name
=
"image2pipe"
,
NULL_IF_CONFIG_SMALL
(
"piped image2 sequence"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"piped image2 sequence"
),
sizeof
(
VideoData
),
.
priv_data_size
=
sizeof
(
VideoData
),
NULL
,
/* no probe */
.
read_header
=
read_header
,
img_read_header
,
.
read_packet
=
read_packet
,
img_read_packet
,
};
};
#endif
#endif
/* output */
/* output */
#if CONFIG_IMAGE2_MUXER
#if CONFIG_IMAGE2_MUXER
AVOutputFormat
image2_muxer
=
{
AVOutputFormat
image2_muxer
=
{
"image2"
,
.
name
=
"image2"
,
NULL_IF_CONFIG_SMALL
(
"image2 sequence"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"image2 sequence"
),
""
,
.
mime_type
=
""
,
"bmp,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,ppm,sgi,tga,tif,tiff,jp2"
,
.
extensions
=
"bmp,jpeg,jpg,ljpg,pam,pbm,pcx,pgm,pgmyuv,png,ppm,sgi,tga,tif,tiff,jp2"
,
sizeof
(
VideoData
),
.
priv_data_size
=
sizeof
(
VideoData
),
CODEC_ID_NONE
,
.
audio_codec
=
CODEC_ID_NONE
,
CODEC_ID_MJPEG
,
.
video_codec
=
CODEC_ID_MJPEG
,
img_write_header
,
.
write_header
=
write_header
,
img_write_packet
,
.
write_packet
=
write_packet
,
NULL
,
.
flags
=
AVFMT_NOTIMESTAMPS
|
AVFMT_NODIMENSIONS
|
AVFMT_NOFILE
.
flags
=
AVFMT_NOTIMESTAMPS
|
AVFMT_NODIMENSIONS
|
AVFMT_NOFILE
};
};
#endif
#endif
#if CONFIG_IMAGE2PIPE_MUXER
#if CONFIG_IMAGE2PIPE_MUXER
AVOutputFormat
image2pipe_muxer
=
{
AVOutputFormat
image2pipe_muxer
=
{
"image2pipe"
,
.
name
=
"image2pipe"
,
NULL_IF_CONFIG_SMALL
(
"piped image2 sequence"
),
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"piped image2 sequence"
),
""
,
.
mime_type
=
""
,
""
,
.
extensions
=
""
,
sizeof
(
VideoData
),
.
priv_data_size
=
sizeof
(
VideoData
),
CODEC_ID_NONE
,
.
audio_codec
=
CODEC_ID_NONE
,
CODEC_ID_MJPEG
,
.
video_codec
=
CODEC_ID_MJPEG
,
img_
write_header
,
.
write_header
=
write_header
,
img_
write_packet
,
.
write_packet
=
write_packet
,
.
flags
=
AVFMT_NOTIMESTAMPS
|
AVFMT_NODIMENSIONS
.
flags
=
AVFMT_NOTIMESTAMPS
|
AVFMT_NODIMENSIONS
};
};
#endif
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment