Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
f49c129d
Commit
f49c129d
authored
7 years ago
by
Carl Eugen Hoyos
Browse files
Options
Downloads
Patches
Plain Diff
lavd/decklink_dec: Do not claim to output transparency information.
parent
41569bbc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavdevice/decklink_dec.cpp
+2
-2
2 additions, 2 deletions
libavdevice/decklink_dec.cpp
libavdevice/version.h
+1
-1
1 addition, 1 deletion
libavdevice/version.h
with
3 additions
and
3 deletions
libavdevice/decklink_dec.cpp
+
2
−
2
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
:
...
...
This diff is collapsed.
Click to expand it.
libavdevice/version.h
+
1
−
1
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, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment