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
8c43fd86
Commit
8c43fd86
authored
Apr 05, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tty: make use of AV_OPT_TYPE_IMAGE_SIZE
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
20343219
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
tty.c
libavformat/tty.c
+5
-9
No files found.
libavformat/tty.c
View file @
8c43fd86
...
@@ -38,7 +38,7 @@ typedef struct {
...
@@ -38,7 +38,7 @@ typedef struct {
AVClass
*
class
;
AVClass
*
class
;
int
chars_per_frame
;
int
chars_per_frame
;
uint64_t
fsize
;
/**< file size less metadata buffer */
uint64_t
fsize
;
/**< file size less metadata buffer */
char
*
video_size
;
/**< A string describing video size, s
et by a private option. */
int
width
,
height
;
/**< S
et by a private option. */
AVRational
framerate
;
/**< Set by a private option. */
AVRational
framerate
;
/**< Set by a private option. */
}
TtyDemuxContext
;
}
TtyDemuxContext
;
...
@@ -75,7 +75,7 @@ static int efi_read(AVFormatContext *avctx, uint64_t start_pos)
...
@@ -75,7 +75,7 @@ static int efi_read(AVFormatContext *avctx, uint64_t start_pos)
static
int
read_header
(
AVFormatContext
*
avctx
)
static
int
read_header
(
AVFormatContext
*
avctx
)
{
{
TtyDemuxContext
*
s
=
avctx
->
priv_data
;
TtyDemuxContext
*
s
=
avctx
->
priv_data
;
int
width
=
0
,
height
=
0
,
ret
=
0
;
int
ret
=
0
;
AVStream
*
st
=
avformat_new_stream
(
avctx
,
NULL
);
AVStream
*
st
=
avformat_new_stream
(
avctx
,
NULL
);
if
(
!
st
)
{
if
(
!
st
)
{
...
@@ -86,12 +86,8 @@ static int read_header(AVFormatContext *avctx)
...
@@ -86,12 +86,8 @@ static int read_header(AVFormatContext *avctx)
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_VIDEO
;
st
->
codec
->
codec_type
=
AVMEDIA_TYPE_VIDEO
;
st
->
codec
->
codec_id
=
AV_CODEC_ID_ANSI
;
st
->
codec
->
codec_id
=
AV_CODEC_ID_ANSI
;
if
(
s
->
video_size
&&
(
ret
=
av_parse_video_size
(
&
width
,
&
height
,
s
->
video_size
))
<
0
)
{
st
->
codec
->
width
=
s
->
width
;
av_log
(
avctx
,
AV_LOG_ERROR
,
"Couldn't parse video size.
\n
"
);
st
->
codec
->
height
=
s
->
height
;
goto
fail
;
}
st
->
codec
->
width
=
width
;
st
->
codec
->
height
=
height
;
avpriv_set_pts_info
(
st
,
60
,
s
->
framerate
.
den
,
s
->
framerate
.
num
);
avpriv_set_pts_info
(
st
,
60
,
s
->
framerate
.
den
,
s
->
framerate
.
num
);
st
->
avg_frame_rate
=
s
->
framerate
;
st
->
avg_frame_rate
=
s
->
framerate
;
...
@@ -141,7 +137,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
...
@@ -141,7 +137,7 @@ static int read_packet(AVFormatContext *avctx, AVPacket *pkt)
#define DEC AV_OPT_FLAG_DECODING_PARAM
#define DEC AV_OPT_FLAG_DECODING_PARAM
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"chars_per_frame"
,
""
,
offsetof
(
TtyDemuxContext
,
chars_per_frame
),
AV_OPT_TYPE_INT
,
{.
i64
=
6000
},
1
,
INT_MAX
,
AV_OPT_FLAG_DECODING_PARAM
},
{
"chars_per_frame"
,
""
,
offsetof
(
TtyDemuxContext
,
chars_per_frame
),
AV_OPT_TYPE_INT
,
{.
i64
=
6000
},
1
,
INT_MAX
,
AV_OPT_FLAG_DECODING_PARAM
},
{
"video_size"
,
"A string describing frame size, such as 640x480 or hd720."
,
OFFSET
(
video_size
),
AV_OPT_TYPE_STRING
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"video_size"
,
"A string describing frame size, such as 640x480 or hd720."
,
OFFSET
(
width
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
NULL
},
0
,
0
,
DEC
},
{
"framerate"
,
""
,
OFFSET
(
framerate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
DEC
},
{
"framerate"
,
""
,
OFFSET
(
framerate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
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