Browse Source

Revert "libavutil: Use an intermediate variable in AV_COPY*U"

This reverts commit 014773b66b.

Since 230b1c070, the bytewise AV_W*() macros only expand their
argument once, i.e. doing exactly the same change as was done
in the AV_COPY*U macros, so this change is no longer necessary.

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n3.3
Martin Storsjö 9 years ago
parent
commit
fc94a1acc2
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      libavutil/intreadwrite.h

+ 1
- 5
libavutil/intreadwrite.h View File

@@ -478,11 +478,7 @@ union unaligned_16 { uint16_t l; } __attribute__((packed)) av_alias;
* memory locations.
*/

#define AV_COPYU(n, d, s) \
do { \
uint##n##_t val = AV_RN##n(s); \
AV_WN##n(d, val); \
} while (0)
#define AV_COPYU(n, d, s) AV_WN##n(d, AV_RN##n(s));

#ifndef AV_COPY16U
# define AV_COPY16U(d, s) AV_COPYU(16, d, s)


Loading…
Cancel
Save