summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-07 20:21:56 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-08-07 20:22:16 +0200
commit2bf87dcc2d3079ead09b250df6932c94ff13504c (patch)
treeba8b9cfcc3d9a06fea0a441f09eccc0908d5531c /libavcodec/h264.c
parent4e70104aba4269770c36fc6e0ec975b7a061d028 (diff)
parenta7e541c9926d531a100ba0d36f4e56956dd84651 (diff)
Merge commit 'a7e541c9926d531a100ba0d36f4e56956dd84651'
* commit 'a7e541c9926d531a100ba0d36f4e56956dd84651': h264: fix interpretation of interleved stereo modes Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 8fa35c74d1..76161e9730 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -843,10 +843,10 @@ static void decode_postinit(H264Context *h, int setup_finished)
stereo->type = AV_STEREO3D_CHECKERBOARD;
break;
case 1:
- stereo->type = AV_STEREO3D_LINES;
+ stereo->type = AV_STEREO3D_COLUMNS;
break;
case 2:
- stereo->type = AV_STEREO3D_COLUMNS;
+ stereo->type = AV_STEREO3D_LINES;
break;
case 3:
if (h->quincunx_subsampling)