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
e2ebaa09
Commit
e2ebaa09
authored
Apr 28, 2014
by
Lukasz Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd/fbdev_dec: implement fbdev_get_device_list callback
Signed-off-by:
Lukasz Marek
<
lukasz.m.luki2@gmail.com
>
parent
279ff8d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
fbdev_dec.c
libavdevice/fbdev_dec.c
+6
-0
No files found.
libavdevice/fbdev_dec.c
View file @
e2ebaa09
...
...
@@ -205,6 +205,11 @@ static av_cold int fbdev_read_close(AVFormatContext *avctx)
return
0
;
}
static
int
fbdev_get_device_list
(
AVFormatContext
*
s
,
AVDeviceInfoList
*
device_list
)
{
return
ff_fbdev_get_device_list
(
device_list
);
}
#define OFFSET(x) offsetof(FBDevContext, x)
#define DEC AV_OPT_FLAG_DECODING_PARAM
static
const
AVOption
options
[]
=
{
...
...
@@ -227,6 +232,7 @@ AVInputFormat ff_fbdev_demuxer = {
.
read_header
=
fbdev_read_header
,
.
read_packet
=
fbdev_read_packet
,
.
read_close
=
fbdev_read_close
,
.
get_device_list
=
fbdev_get_device_list
,
.
flags
=
AVFMT_NOFILE
,
.
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