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
4b8a8194
Commit
4b8a8194
authored
Apr 26, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/ffv1enc: set bits_per_raw_sample for 8bit based formats
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
81e40c26
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
4 deletions
+10
-4
ffv1enc.c
libavcodec/ffv1enc.c
+6
-0
vsynth1-ffv1
tests/ref/vsynth/vsynth1-ffv1
+1
-1
vsynth2-ffv1
tests/ref/vsynth/vsynth2-ffv1
+1
-1
vsynth3-ffv1
tests/ref/vsynth/vsynth3-ffv1
+1
-1
vsynth_lena-ffv1
tests/ref/vsynth/vsynth_lena-ffv1
+1
-1
No files found.
libavcodec/ffv1enc.c
View file @
4b8a8194
...
...
@@ -753,15 +753,21 @@ static av_cold int encode_init(AVCodecContext *avctx)
s
->
chroma_planes
=
desc
->
nb_components
<
3
?
0
:
1
;
s
->
colorspace
=
0
;
s
->
transparency
=
desc
->
nb_components
==
4
;
if
(
!
avctx
->
bits_per_raw_sample
)
s
->
bits_per_raw_sample
=
8
;
break
;
case
AV_PIX_FMT_RGB32
:
s
->
colorspace
=
1
;
s
->
transparency
=
1
;
s
->
chroma_planes
=
1
;
if
(
!
avctx
->
bits_per_raw_sample
)
s
->
bits_per_raw_sample
=
8
;
break
;
case
AV_PIX_FMT_0RGB32
:
s
->
colorspace
=
1
;
s
->
chroma_planes
=
1
;
if
(
!
avctx
->
bits_per_raw_sample
)
s
->
bits_per_raw_sample
=
8
;
break
;
case
AV_PIX_FMT_GBRP9
:
if
(
!
avctx
->
bits_per_raw_sample
)
...
...
tests/ref/vsynth/vsynth1-ffv1
View file @
4b8a8194
85c421168aab0ca8e24f71da504701af
*tests/data/fate/vsynth1-ffv1.avi
26b1296a0ef80a3b5c8b63cc57c52bc2
*tests/data/fate/vsynth1-ffv1.avi
2691268 tests/data/fate/vsynth1-ffv1.avi
c5ccac874dbf808e9088bc3107860042 *tests/data/fate/vsynth1-ffv1.out.rawvideo
stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 7603200/ 7603200
tests/ref/vsynth/vsynth2-ffv1
View file @
4b8a8194
d69458b07bcbce4e7e9388d8fe6c748d
*tests/data/fate/vsynth2-ffv1.avi
6d7b6352f49e21153bb891df411e60ec
*tests/data/fate/vsynth2-ffv1.avi
3718026 tests/data/fate/vsynth2-ffv1.avi
36d7ca943916e1743cefa609eba0205c *tests/data/fate/vsynth2-ffv1.out.rawvideo
stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 7603200/ 7603200
tests/ref/vsynth/vsynth3-ffv1
View file @
4b8a8194
63c2cdbbdb577dfb5e43ca813f1db68b
*tests/data/fate/vsynth3-ffv1.avi
f969ca8542c8384c27233f362b661f8a
*tests/data/fate/vsynth3-ffv1.avi
62194 tests/data/fate/vsynth3-ffv1.avi
a038ad7c3c09f776304ef7accdea9c74 *tests/data/fate/vsynth3-ffv1.out.rawvideo
stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 86700/ 86700
tests/ref/vsynth/vsynth_lena-ffv1
View file @
4b8a8194
e
756081d98f11f303a06897ff6b563b5
*tests/data/fate/vsynth_lena-ffv1.avi
e
d72c22374718589ffacd7ea15424687
*tests/data/fate/vsynth_lena-ffv1.avi
3547792 tests/data/fate/vsynth_lena-ffv1.avi
dde5895817ad9d219f79a52d0bdfb001 *tests/data/fate/vsynth_lena-ffv1.out.rawvideo
stddev: 0.00 PSNR:999.99 MAXDIFF: 0 bytes: 7603200/ 7603200
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