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
09cb75cd
Commit
09cb75cd
authored
Aug 31, 2013
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libx264: set frame packing information when relevant information is found
parent
5b10ef72
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
1 deletion
+37
-1
libx264.c
libavcodec/libx264.c
+37
-1
No files found.
libavcodec/libx264.c
View file @
09cb75cd
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "libavutil/mem.h"
#include "libavutil/mem.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
#include "libavutil/stereo3d.h"
#include "avcodec.h"
#include "avcodec.h"
#include "internal.h"
#include "internal.h"
...
@@ -134,6 +135,7 @@ static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
...
@@ -134,6 +135,7 @@ static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
x264_nal_t
*
nal
;
x264_nal_t
*
nal
;
int
nnal
,
i
,
ret
;
int
nnal
,
i
,
ret
;
x264_picture_t
pic_out
;
x264_picture_t
pic_out
;
AVFrameSideData
*
side_data
;
x264_picture_init
(
&
x4
->
pic
);
x264_picture_init
(
&
x4
->
pic
);
x4
->
pic
.
img
.
i_csp
=
x4
->
params
.
i_csp
;
x4
->
pic
.
img
.
i_csp
=
x4
->
params
.
i_csp
;
...
@@ -163,8 +165,42 @@ static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
...
@@ -163,8 +165,42 @@ static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
x4
->
params
.
vui
.
i_sar_width
=
ctx
->
sample_aspect_ratio
.
num
;
x4
->
params
.
vui
.
i_sar_width
=
ctx
->
sample_aspect_ratio
.
num
;
x264_encoder_reconfig
(
x4
->
enc
,
&
x4
->
params
);
x264_encoder_reconfig
(
x4
->
enc
,
&
x4
->
params
);
}
}
}
side_data
=
av_frame_get_side_data
(
frame
,
AV_FRAME_DATA_STEREO3D
);
if
(
side_data
)
{
AVStereo3D
*
stereo
=
(
AVStereo3D
*
)
side_data
->
data
;
int
fpa_type
;
switch
(
stereo
->
type
)
{
case
AV_STEREO3D_CHECKERBOARD
:
fpa_type
=
0
;
break
;
case
AV_STEREO3D_LINES
:
fpa_type
=
1
;
break
;
case
AV_STEREO3D_COLUMNS
:
fpa_type
=
2
;
break
;
case
AV_STEREO3D_SIDEBYSIDE
:
fpa_type
=
3
;
break
;
case
AV_STEREO3D_TOPBOTTOM
:
fpa_type
=
4
;
break
;
case
AV_STEREO3D_FRAMESEQUENCE
:
fpa_type
=
5
;
break
;
default:
fpa_type
=
-
1
;
break
;
}
if
(
fpa_type
!=
x4
->
params
.
i_frame_packing
)
{
x4
->
params
.
i_frame_packing
=
fpa_type
;
x264_encoder_reconfig
(
x4
->
enc
,
&
x4
->
params
);
}
}
}
do
{
do
{
if
(
x264_encoder_encode
(
x4
->
enc
,
&
nal
,
&
nnal
,
frame
?
&
x4
->
pic
:
NULL
,
&
pic_out
)
<
0
)
if
(
x264_encoder_encode
(
x4
->
enc
,
&
nal
,
&
nnal
,
frame
?
&
x4
->
pic
:
NULL
,
&
pic_out
)
<
0
)
return
-
1
;
return
-
1
;
...
...
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