Browse Source

Remove unneeded semicolon.

Originally committed as revision 9316 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
91a2974ee9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/bytestream.h

+ 1
- 1
libavcodec/bytestream.h View File

@@ -30,7 +30,7 @@ static av_always_inline unsigned int bytestream_get_ ## name(uint8_t **b){\
static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\ static av_always_inline void bytestream_put_ ##name(uint8_t **b, const unsigned int value){\
write(*b, value);\ write(*b, value);\
(*b) += bytes;\ (*b) += bytes;\
};
}


DEF(le32, 4, AV_RL32, AV_WL32) DEF(le32, 4, AV_RL32, AV_WL32)
DEF(le24, 3, AV_RL24, AV_WL24) DEF(le24, 3, AV_RL24, AV_WL24)


Loading…
Cancel
Save