summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-13 12:53:31 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-11-13 12:53:31 +0100
commit76fa78911f58c9707226559e0f57be8d47fb2fca (patch)
tree1b5e61e129fb1d3052e914daddc0962a8b3353fa /libavcodec
parent946a5cb64d580098e6abc399fd404e81fc816742 (diff)
parentb1b1a7370e141c912e3d0bbaa668dcee05c3ad67 (diff)
Merge commit 'b1b1a7370e141c912e3d0bbaa668dcee05c3ad67'
* commit 'b1b1a7370e141c912e3d0bbaa668dcee05c3ad67': display: fix order of operands Conflicts: libavcodec/h264.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/h264.c2
-rw-r--r--libavcodec/hevc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 12713de56b..222bf58b10 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -877,7 +877,7 @@ static void decode_postinit(H264Context *h, int setup_finished)
if (rotation) {
av_display_rotation_set((int32_t *)rotation->data, angle);
av_display_matrix_flip((int32_t *)rotation->data,
- h->sei_vflip, h->sei_hflip);
+ h->sei_hflip, h->sei_vflip);
}
}
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 8deea097bc..464aaab083 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -2530,7 +2530,7 @@ static int set_side_data(HEVCContext *s)
av_display_rotation_set((int32_t *)rotation->data, angle);
av_display_matrix_flip((int32_t *)rotation->data,
- s->sei_vflip, s->sei_hflip);
+ s->sei_hflip, s->sei_vflip);
}
return 0;