Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f797ddd3
Commit
f797ddd3
authored
Jul 11, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up chroma handling in ffmpeg (as a bonus, fixed the last issue
with #1488)
parent
16ceb0de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
100 deletions
+9
-100
modules/codec/avcodec/chroma.h
modules/codec/avcodec/chroma.h
+1
-0
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+8
-100
No files found.
modules/codec/avcodec/chroma.h
View file @
f797ddd3
...
...
@@ -90,6 +90,7 @@ static inline vlc_fourcc_t GetVlcChroma( int i_ffmpeg_chroma )
{
int
i
;
/* TODO FIXME for rgb format we HAVE to set rgb mask/shift */
for
(
i
=
0
;
chroma_table
[
i
].
i_chroma
!=
0
;
i
++
)
{
if
(
chroma_table
[
i
].
i_chroma_id
==
i_ffmpeg_chroma
)
...
...
modules/codec/avcodec/video.c
View file @
f797ddd3
...
...
@@ -104,61 +104,6 @@ static uint32_t ffmpeg_CodecTag( vlc_fourcc_t fcc )
/*****************************************************************************
* Local Functions
*****************************************************************************/
static
uint32_t
ffmpeg_PixFmtToChroma
(
int
i_ff_chroma
)
{
switch
(
i_ff_chroma
)
{
case
PIX_FMT_YUV420P
:
case
PIX_FMT_YUVJ420P
:
/* Hacky but better then chroma conversion */
return
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'0'
);
case
PIX_FMT_YUV422P
:
case
PIX_FMT_YUVJ422P
:
/* Hacky but better then chroma conversion */
return
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'2'
);
case
PIX_FMT_YUV444P
:
case
PIX_FMT_YUVJ444P
:
/* Hacky but better then chroma conversion */
return
VLC_FOURCC
(
'I'
,
'4'
,
'4'
,
'4'
);
case
PIX_FMT_YUV422
:
return
VLC_FOURCC
(
'Y'
,
'U'
,
'Y'
,
'2'
);
#if defined(WORDS_BIGENDIAN)
case
PIX_FMT_BGR8
:
return
VLC_FOURCC
(
'R'
,
'G'
,
'B'
,
'8'
);
case
PIX_FMT_BGR555
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'5'
);
case
PIX_FMT_BGR565
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'6'
);
case
PIX_FMT_BGR24
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'2'
,
'4'
);
#else
#if defined(PIX_FMT_RGB8)
case
PIX_FMT_RGB8
:
return
VLC_FOURCC
(
'R'
,
'G'
,
'B'
,
'8'
);
#endif
case
PIX_FMT_RGB555
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'5'
);
case
PIX_FMT_RGB565
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'1'
,
'6'
);
case
PIX_FMT_RGB24
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'2'
,
'4'
);
#endif
case
PIX_FMT_RGBA32
:
return
VLC_FOURCC
(
'R'
,
'V'
,
'3'
,
'2'
);
#ifdef PIX_FMT_RGBA
case
PIX_FMT_RGBA
:
return
VLC_FOURCC
(
'R'
,
'G'
,
'B'
,
'A'
);
#endif
case
PIX_FMT_GRAY8
:
return
VLC_FOURCC
(
'G'
,
'R'
,
'E'
,
'Y'
);
default:
#if defined(HAVE_LIBSWSCALE_SWSCALE_H) || defined(HAVE_FFMPEG_SWSCALE_H)
if
(
GetVlcChroma
(
i_ff_chroma
)
)
return
GetVlcChroma
(
i_ff_chroma
);
#endif
return
0
;
}
}
/* Returns a new picture buffer */
static
inline
picture_t
*
ffmpeg_NewPictBuf
(
decoder_t
*
p_dec
,
...
...
@@ -168,7 +113,7 @@ static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
p_dec
->
fmt_out
.
video
.
i_width
=
p_context
->
width
;
p_dec
->
fmt_out
.
video
.
i_height
=
p_context
->
height
;
p_dec
->
fmt_out
.
i_codec
=
ffmpeg_PixFmtTo
Chroma
(
p_context
->
pix_fmt
);
p_dec
->
fmt_out
.
i_codec
=
GetVlc
Chroma
(
p_context
->
pix_fmt
);
if
(
!
p_context
->
width
||
!
p_context
->
height
)
{
...
...
@@ -177,7 +122,7 @@ static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
if
(
!
p_dec
->
fmt_out
.
i_codec
)
{
/* we
make conversion if possible
*/
/* we
are doomed
*/
p_dec
->
fmt_out
.
i_codec
=
VLC_FOURCC
(
'I'
,
'4'
,
'2'
,
'0'
);
}
...
...
@@ -384,7 +329,7 @@ int InitVideoDec( decoder_t *p_dec, AVCodecContext *p_context,
/* Set output properties */
p_dec
->
fmt_out
.
i_cat
=
VIDEO_ES
;
p_dec
->
fmt_out
.
i_codec
=
ffmpeg_PixFmtTo
Chroma
(
p_context
->
pix_fmt
);
p_dec
->
fmt_out
.
i_codec
=
GetVlc
Chroma
(
p_context
->
pix_fmt
);
/* Setup palette */
if
(
p_dec
->
fmt_in
.
video
.
p_palette
)
...
...
@@ -815,7 +760,7 @@ static void ffmpeg_CopyPicture( decoder_t *p_dec,
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
if
(
ffmpeg_PixFmtTo
Chroma
(
p_sys
->
p_context
->
pix_fmt
)
)
if
(
GetVlc
Chroma
(
p_sys
->
p_context
->
pix_fmt
)
)
{
int
i_plane
,
i_size
,
i_line
;
uint8_t
*
p_dst
,
*
p_src
;
...
...
@@ -840,46 +785,9 @@ static void ffmpeg_CopyPicture( decoder_t *p_dec,
}
else
{
AVPicture
dest_pic
;
int
i
;
/* we need to convert to I420 */
switch
(
p_sys
->
p_context
->
pix_fmt
)
{
case
PIX_FMT_YUV410P
:
case
PIX_FMT_YUV411P
:
case
PIX_FMT_RGB32
:
case
PIX_FMT_RGB24
:
#if defined(PIX_FMT_RGB8)
case
PIX_FMT_RGB8
:
#endif
#if defined(PIX_FMT_BRG32)
case
PIX_FMT_BGR32
:
#endif
case
PIX_FMT_BGR24
:
#if defined(PIX_FMT_BGR8)
case
PIX_FMT_BGR8
:
#endif
case
PIX_FMT_PAL8
:
for
(
i
=
0
;
i
<
p_pic
->
i_planes
;
i
++
)
{
dest_pic
.
data
[
i
]
=
p_pic
->
p
[
i
].
p_pixels
;
dest_pic
.
linesize
[
i
]
=
p_pic
->
p
[
i
].
i_pitch
;
}
#if !defined(HAVE_LIBSWSCALE_SWSCALE_H) && !defined(HAVE_FFMPEG_SWSCALE_H)
img_convert
(
&
dest_pic
,
PIX_FMT_YUV420P
,
(
AVPicture
*
)
p_ff_pic
,
p_sys
->
p_context
->
pix_fmt
,
p_sys
->
p_context
->
width
,
p_sys
->
p_context
->
height
);
#endif
break
;
default:
msg_Err
(
p_dec
,
"don't know how to convert chroma %i"
,
p_sys
->
p_context
->
pix_fmt
);
p_dec
->
b_error
=
1
;
break
;
}
msg_Err
(
p_dec
,
"don't know how to convert chroma %i"
,
p_sys
->
p_context
->
pix_fmt
);
p_dec
->
b_error
=
1
;
}
}
...
...
@@ -912,7 +820,7 @@ static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
/* Some codecs set pix_fmt only after the 1st frame has been decoded,
* so this check is necessary. */
if
(
!
ffmpeg_PixFmtTo
Chroma
(
p_context
->
pix_fmt
)
||
if
(
!
GetVlc
Chroma
(
p_context
->
pix_fmt
)
||
p_sys
->
p_context
->
width
%
16
||
p_sys
->
p_context
->
height
%
16
)
{
msg_Dbg
(
p_dec
,
"disabling direct rendering"
);
...
...
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