summaryrefslogtreecommitdiff
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
parent56cc754c76d3aba81e121502d0d420242b7023b1 (diff)
parent9301486408a480629336af4d7fd873c0f28fb2d5 (diff)
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>
-rw-r--r--doc/APIchanges3
-rw-r--r--libavcodec/avcodec.h6
-rw-r--r--libavcodec/utils.c10
-rw-r--r--libavcodec/version.h4
-rw-r--r--libavformat/dump.c50
5 files changed, 71 insertions, 2 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index a2dcb2c692..6d214ef31b 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -15,6 +15,9 @@ libavutil: 2014-08-09
API changes, most recent first:
+2014-08-xx - xxxxxxx - lavc 56.1.0 - avcodec.h
+ Add AV_PKT_DATA_STEREO3D to export container-level stereo3d information.
+
2014-08-25 - 215db29 / b263f8f - lavf 56.3.100 / 56.3.0 - avformat.h
Add AVFormatContext.max_ts_probe.
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index d39e7f14b5..6dd6256bcd 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -1027,6 +1027,12 @@ enum AVPacketSideDataType {
*/
AV_PKT_DATA_DISPLAYMATRIX,
+ /*
+ * This side data should be associated with a video stream and contains
+ * Stereoscopic 3D information in form of the AVStereo3D struct.
+ */
+ AV_PKT_DATA_STEREO3D,
+
/**
* Recommmends skipping the specified number of samples
* @code
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);
diff --git a/libavcodec/version.h b/libavcodec/version.h
index 9da72abdd0..8664884099 100644
--- a/libavcodec/version.h
+++ b/libavcodec/version.h
@@ -29,8 +29,8 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 56
-#define LIBAVCODEC_VERSION_MINOR 0
-#define LIBAVCODEC_VERSION_MICRO 101
+#define LIBAVCODEC_VERSION_MINOR 1
+#define LIBAVCODEC_VERSION_MICRO 100
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
diff --git a/libavformat/dump.c b/libavformat/dump.c
index b87379a9e1..3a7adbe014 100644
--- a/libavformat/dump.c
+++ b/libavformat/dump.c
@@ -29,6 +29,7 @@
#include "libavutil/mathematics.h"
#include "libavutil/avstring.h"
#include "libavutil/replaygain.h"
+#include "libavutil/stereo3d.h"
#include "avformat.h"
@@ -244,6 +245,51 @@ static void dump_replaygain(void *ctx, AVPacketSideData *sd)
print_peak(ctx, "album peak", rg->album_peak);
}
+static void dump_stereo3d(void *ctx, AVPacketSideData *sd)
+{
+ AVStereo3D *stereo;
+
+ if (sd->size < sizeof(*stereo)) {
+ av_log(ctx, AV_LOG_INFO, "invalid data");
+ return;
+ }
+
+ stereo = (AVStereo3D *)sd->data;
+
+ switch (stereo->type) {
+ case AV_STEREO3D_2D:
+ av_log(ctx, AV_LOG_INFO, "2D");
+ break;
+ case AV_STEREO3D_SIDEBYSIDE:
+ av_log(ctx, AV_LOG_INFO, "side by side");
+ break;
+ case AV_STEREO3D_TOPBOTTOM:
+ av_log(ctx, AV_LOG_INFO, "top and bottom");
+ break;
+ case AV_STEREO3D_FRAMESEQUENCE:
+ av_log(ctx, AV_LOG_INFO, "frame alternate");
+ break;
+ case AV_STEREO3D_CHECKERBOARD:
+ av_log(ctx, AV_LOG_INFO, "checkerboard");
+ break;
+ case AV_STEREO3D_LINES:
+ av_log(ctx, AV_LOG_INFO, "interleaved lines");
+ break;
+ case AV_STEREO3D_COLUMNS:
+ av_log(ctx, AV_LOG_INFO, "interleaved columns");
+ break;
+ case AV_STEREO3D_SIDEBYSIDE_QUINCUNX:
+ av_log(ctx, AV_LOG_INFO, "side by side (quincunx subsampling)");
+ break;
+ default:
+ av_log(ctx, AV_LOG_WARNING, "unknown");
+ break;
+ }
+
+ if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
+ av_log(ctx, AV_LOG_INFO, " (inverted)");
+}
+
static void dump_sidedata(void *ctx, AVStream *st, const char *indent)
{
int i;
@@ -277,6 +323,10 @@ static void dump_sidedata(void *ctx, AVStream *st, const char *indent)
av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
av_display_rotation_get((int32_t *)sd.data));
break;
+ case AV_PKT_DATA_STEREO3D:
+ av_log(ctx, AV_LOG_INFO, "stereo3d: ");
+ dump_stereo3d(ctx, &sd);
+ break;
default:
av_log(ctx, AV_LOG_WARNING,
"unknown side data type %d (%d bytes)", sd.type, sd.size);