Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
abcedfac
Commit
abcedfac
authored
Jun 03, 2011
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
img2: add framerate private option.
parent
a915bf64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
img2.c
libavformat/img2.c
+10
-5
No files found.
libavformat/img2.c
View file @
abcedfac
...
@@ -41,6 +41,7 @@ typedef struct {
...
@@ -41,6 +41,7 @@ typedef struct {
char
path
[
1024
];
char
path
[
1024
];
char
*
pixel_format
;
/**< Set by a private option. */
char
*
pixel_format
;
/**< Set by a private option. */
char
*
video_size
;
/**< Set by a private option. */
char
*
video_size
;
/**< Set by a private option. */
char
*
framerate
;
/**< Set by a private option. */
}
VideoData
;
}
VideoData
;
typedef
struct
{
typedef
struct
{
...
@@ -209,6 +210,7 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
...
@@ -209,6 +210,7 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
int
width
=
0
,
height
=
0
;
int
width
=
0
,
height
=
0
;
AVStream
*
st
;
AVStream
*
st
;
enum
PixelFormat
pix_fmt
=
PIX_FMT_NONE
;
enum
PixelFormat
pix_fmt
=
PIX_FMT_NONE
;
AVRational
framerate
;
s1
->
ctx_flags
|=
AVFMTCTX_NOHEADER
;
s1
->
ctx_flags
|=
AVFMTCTX_NOHEADER
;
...
@@ -225,6 +227,10 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
...
@@ -225,6 +227,10 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
av_log
(
s
,
AV_LOG_ERROR
,
"Could not parse video size: %s.
\n
"
,
s
->
video_size
);
av_log
(
s
,
AV_LOG_ERROR
,
"Could not parse video size: %s.
\n
"
,
s
->
video_size
);
return
ret
;
return
ret
;
}
}
if
((
ret
=
av_parse_video_rate
(
&
framerate
,
s
->
framerate
))
<
0
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"Could not parse framerate: %s.
\n
"
,
s
->
framerate
);
return
ret
;
}
#if FF_API_FORMAT_PARAMETERS
#if FF_API_FORMAT_PARAMETERS
if
(
ap
->
pix_fmt
!=
PIX_FMT_NONE
)
if
(
ap
->
pix_fmt
!=
PIX_FMT_NONE
)
pix_fmt
=
ap
->
pix_fmt
;
pix_fmt
=
ap
->
pix_fmt
;
...
@@ -232,6 +238,8 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
...
@@ -232,6 +238,8 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
width
=
ap
->
width
;
width
=
ap
->
width
;
if
(
ap
->
height
>
0
)
if
(
ap
->
height
>
0
)
height
=
ap
->
height
;
height
=
ap
->
height
;
if
(
ap
->
time_base
.
num
)
framerate
=
(
AVRational
){
ap
->
time_base
.
den
,
ap
->
time_base
.
num
};
#endif
#endif
av_strlcpy
(
s
->
path
,
s1
->
filename
,
sizeof
(
s
->
path
));
av_strlcpy
(
s
->
path
,
s1
->
filename
,
sizeof
(
s
->
path
));
...
@@ -246,11 +254,7 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
...
@@ -246,11 +254,7 @@ static int read_header(AVFormatContext *s1, AVFormatParameters *ap)
st
->
need_parsing
=
AVSTREAM_PARSE_FULL
;
st
->
need_parsing
=
AVSTREAM_PARSE_FULL
;
}
}
if
(
!
ap
->
time_base
.
num
)
{
av_set_pts_info
(
st
,
60
,
framerate
.
den
,
framerate
.
num
);
av_set_pts_info
(
st
,
60
,
1
,
25
);
}
else
{
av_set_pts_info
(
st
,
60
,
ap
->
time_base
.
num
,
ap
->
time_base
.
den
);
}
if
(
width
&&
height
)
{
if
(
width
&&
height
)
{
st
->
codec
->
width
=
width
;
st
->
codec
->
width
=
width
;
...
@@ -452,6 +456,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
...
@@ -452,6 +456,7 @@ static int write_packet(AVFormatContext *s, AVPacket *pkt)
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"pixel_format"
,
""
,
OFFSET
(
pixel_format
),
FF_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"pixel_format"
,
""
,
OFFSET
(
pixel_format
),
FF_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"video_size"
,
""
,
OFFSET
(
video_size
),
FF_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"video_size"
,
""
,
OFFSET
(
video_size
),
FF_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"framerate"
,
""
,
OFFSET
(
framerate
),
FF_OPT_TYPE_STRING
,
{.
str
=
"25"
},
0
,
0
,
DEC
},
{
NULL
},
{
NULL
},
};
};
...
...
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