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
afc898e7
Commit
afc898e7
authored
Apr 12, 2014
by
Lukasz Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd/fbdev_enc: implement get_device_list
Signed-off-by:
Lukasz Marek
<
lukasz.m.luki2@gmail.com
>
parent
c1c3c361
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
fbdev_enc.c
libavdevice/fbdev_enc.c
+63
-0
No files found.
libavdevice/fbdev_enc.c
View file @
afc898e7
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "libavformat/avformat.h"
#include "libavformat/avformat.h"
#include "fbdev_common.h"
#include "fbdev_common.h"
#include "avdevice.h"
typedef
struct
{
typedef
struct
{
AVClass
*
class
;
///< class for private options
AVClass
*
class
;
///< class for private options
...
@@ -183,6 +184,67 @@ static av_cold int fbdev_write_trailer(AVFormatContext *h)
...
@@ -183,6 +184,67 @@ static av_cold int fbdev_write_trailer(AVFormatContext *h)
return
0
;
return
0
;
}
}
static
int
fbdev_get_device_list
(
AVFormatContext
*
s
,
AVDeviceInfoList
*
device_list
)
{
struct
fb_var_screeninfo
varinfo
;
struct
fb_fix_screeninfo
fixinfo
;
char
device_file
[
12
];
AVDeviceInfo
*
device
=
NULL
;
int
i
,
fd
=
-
1
,
ret
=
0
;
const
char
*
default_device
=
ff_fbdev_default_device
();
if
(
!
device_list
)
return
AVERROR
(
EINVAL
);
for
(
i
=
0
;
i
<=
31
;
i
++
)
{
snprintf
(
device_file
,
sizeof
(
device_file
),
"/dev/fb%d"
,
i
);
if
((
fd
=
avpriv_open
(
device_file
,
O_RDWR
))
<
0
)
continue
;
if
(
ioctl
(
fd
,
FBIOGET_VSCREENINFO
,
&
varinfo
)
==
-
1
)
goto
fail_device
;
if
(
ioctl
(
fd
,
FBIOGET_FSCREENINFO
,
&
fixinfo
)
==
-
1
)
goto
fail_device
;
device
=
av_mallocz
(
sizeof
(
AVDeviceInfo
));
if
(
!
device
)
{
ret
=
AVERROR
(
ENOMEM
);
goto
fail_device
;
}
device
->
device_name
=
av_strdup
(
device_file
);
device
->
device_description
=
av_strdup
(
fixinfo
.
id
);
if
(
!
device
->
device_name
||
!
device
->
device_description
)
{
ret
=
AVERROR
(
ENOMEM
);
goto
fail_device
;
}
if
((
ret
=
av_dynarray_add_nofree
(
&
device_list
->
devices
,
&
device_list
->
nb_devices
,
device
))
<
0
)
goto
fail_device
;
if
(
default_device
&&
!
strcmp
(
device
->
device_name
,
default_device
))
{
device_list
->
default_device
=
device_list
->
nb_devices
-
1
;
default_device
=
NULL
;
}
continue
;
fail_device:
if
(
device
)
{
av_free
(
device
->
device_name
);
av_free
(
device
->
device_description
);
av_freep
(
&
device
);
}
if
(
fd
>=
0
)
{
close
(
fd
);
fd
=
-
1
;
}
if
(
ret
<
0
)
return
ret
;
}
return
0
;
}
#define OFFSET(x) offsetof(FBDevContext, x)
#define OFFSET(x) offsetof(FBDevContext, x)
#define ENC AV_OPT_FLAG_ENCODING_PARAM
#define ENC AV_OPT_FLAG_ENCODING_PARAM
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
...
@@ -208,6 +270,7 @@ AVOutputFormat ff_fbdev_muxer = {
...
@@ -208,6 +270,7 @@ AVOutputFormat ff_fbdev_muxer = {
.
write_header
=
fbdev_write_header
,
.
write_header
=
fbdev_write_header
,
.
write_packet
=
fbdev_write_packet
,
.
write_packet
=
fbdev_write_packet
,
.
write_trailer
=
fbdev_write_trailer
,
.
write_trailer
=
fbdev_write_trailer
,
.
get_device_list
=
fbdev_get_device_list
,
.
flags
=
AVFMT_NOFILE
|
AVFMT_VARIABLE_FPS
|
AVFMT_NOTIMESTAMPS
,
.
flags
=
AVFMT_NOFILE
|
AVFMT_VARIABLE_FPS
|
AVFMT_NOTIMESTAMPS
,
.
priv_class
=
&
fbdev_class
,
.
priv_class
=
&
fbdev_class
,
};
};
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