Browse Source

avcodec/tiffenc: remove double ;;

tags/n2.6
Clément Bœsch 11 years ago
parent
commit
ca3c7be7c6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/tiffenc.c

+ 2
- 2
libavcodec/tiffenc.c View File

@@ -230,14 +230,14 @@ static void pack_yuv(TiffEncoderContext *s, const AVFrame *p,
ret = add_entry(s, tag, type, count, ptr_val); \
if (ret < 0) \
goto fail; \
} while(0);
} while (0)

#define ADD_ENTRY1(s, tag, type, val) \
do { \
ret = add_entry1(s, tag, type, val); \
if (ret < 0) \
goto fail; \
} while(0);
} while (0)

static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet)


Loading…
Cancel
Save