aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/utils.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-28 22:23:01 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-28 22:23:01 +0200
commitf30a8154abf2905b61b08974bc71f04e8d7afc68 (patch)
tree2c487d535bd7955a2c1e598a4409142790d8230e /libavcodec/utils.c
parent56cc754c76d3aba81e121502d0d420242b7023b1 (diff)
parent9301486408a480629336af4d7fd873c0f28fb2d5 (diff)
downloadffmpeg-f30a8154abf2905b61b08974bc71f04e8d7afc68.tar.gz
Merge commit '9301486408a480629336af4d7fd873c0f28fb2d5'
* commit '9301486408a480629336af4d7fd873c0f28fb2d5': avcodec: add stream-level stereo3d side data Conflicts: doc/APIchanges libavcodec/avcodec.h libavcodec/utils.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index a7bed06432..9d3fcfd730 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -756,6 +756,16 @@ int ff_init_buffer_info(AVCodecContext *avctx, AVFrame *frame)
memcpy(frame_sd->data, packet_sd, size);
}
+
+ /* copy the stereo3d format to the output frame */
+ packet_sd = av_packet_get_side_data(pkt, AV_PKT_DATA_STEREO3D, &size);
+ if (packet_sd) {
+ frame_sd = av_frame_new_side_data(frame, AV_FRAME_DATA_STEREO3D, size);
+ if (!frame_sd)
+ return AVERROR(ENOMEM);
+
+ memcpy(frame_sd->data, packet_sd, size);
+ }
} else {
frame->pkt_pts = AV_NOPTS_VALUE;
av_frame_set_pkt_pos (frame, -1);