diff options
Diffstat (limited to 'libavcodec/jpegls.h')
-rw-r--r-- | libavcodec/jpegls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/jpegls.h b/libavcodec/jpegls.h index 792d2be..c2b22e2 100644 --- a/libavcodec/jpegls.h +++ b/libavcodec/jpegls.h @@ -25,8 +25,8 @@ * JPEG-LS common code. */ -#ifndef FFMPEG_JPEGLS_H -#define FFMPEG_JPEGLS_H +#ifndef AVCODEC_JPEGLS_H +#define AVCODEC_JPEGLS_H #include "avcodec.h" @@ -108,4 +108,4 @@ static inline int ff_jpegls_update_state_regular(JLSState *state, int Q, int err #define R(a, i ) (bits == 8 ? ((uint8_t*)(a))[i] : ((uint16_t*)(a))[i] ) #define W(a, i, v) (bits == 8 ? (((uint8_t*)(a))[i]=v) : (((uint16_t*)(a))[i]=v)) -#endif /* FFMPEG_JPEGLS_H */ +#endif /* AVCODEC_JPEGLS_H */ |