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
f49c129d
Commit
f49c129d
authored
Oct 08, 2017
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavd/decklink_dec: Do not claim to output transparency information.
parent
41569bbc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
decklink_dec.cpp
libavdevice/decklink_dec.cpp
+2
-2
version.h
libavdevice/version.h
+1
-1
No files found.
libavdevice/decklink_dec.cpp
View file @
f49c129d
...
...
@@ -965,13 +965,13 @@ av_cold int ff_decklink_read_header(AVFormatContext *avctx)
case
bmdFormat8BitARGB
:
st
->
codecpar
->
codec_id
=
AV_CODEC_ID_RAWVIDEO
;
st
->
codecpar
->
codec_tag
=
avcodec_pix_fmt_to_codec_tag
((
enum
AVPixelFormat
)
st
->
codecpar
->
format
);;
st
->
codecpar
->
format
=
AV_PIX_FMT_
A
RGB
;
st
->
codecpar
->
format
=
AV_PIX_FMT_
0
RGB
;
st
->
codecpar
->
bit_rate
=
av_rescale
(
ctx
->
bmd_width
*
ctx
->
bmd_height
*
32
,
st
->
time_base
.
den
,
st
->
time_base
.
num
);
break
;
case
bmdFormat8BitBGRA
:
st
->
codecpar
->
codec_id
=
AV_CODEC_ID_RAWVIDEO
;
st
->
codecpar
->
codec_tag
=
avcodec_pix_fmt_to_codec_tag
((
enum
AVPixelFormat
)
st
->
codecpar
->
format
);
st
->
codecpar
->
format
=
AV_PIX_FMT_BGR
A
;
st
->
codecpar
->
format
=
AV_PIX_FMT_BGR
0
;
st
->
codecpar
->
bit_rate
=
av_rescale
(
ctx
->
bmd_width
*
ctx
->
bmd_height
*
32
,
st
->
time_base
.
den
,
st
->
time_base
.
num
);
break
;
case
bmdFormat10BitRGB
:
...
...
libavdevice/version.h
View file @
f49c129d
...
...
@@ -29,7 +29,7 @@
#define LIBAVDEVICE_VERSION_MAJOR 57
#define LIBAVDEVICE_VERSION_MINOR 9
#define LIBAVDEVICE_VERSION_MICRO 10
1
#define LIBAVDEVICE_VERSION_MICRO 10
2
#define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
LIBAVDEVICE_VERSION_MINOR, \
...
...
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