diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-12 17:58:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-12 17:58:15 +0200 |
commit | 0d002de4a452c0b270364ac0424368d507629463 (patch) | |
tree | 4ae58796fb8bb0991b7d08ed7aae5eac23269d98 | |
parent | e3301459f691230bea7cebdc95d8fc255026cdeb (diff) | |
download | ffmpeg-0d002de4a452c0b270364ac0424368d507629463.tar.gz |
exr: fix twin ;
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/exr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/exr.c b/libavcodec/exr.c index 93ae4a63b6..6773d88515 100644 --- a/libavcodec/exr.c +++ b/libavcodec/exr.c @@ -230,7 +230,7 @@ static int decode_frame(AVCodecContext *avctx, unsigned int buf_size = avpkt->size; const uint8_t *buf_end = buf + buf_size; - const AVPixFmtDescriptor *desc;; + const AVPixFmtDescriptor *desc; EXRContext *const s = avctx->priv_data; AVFrame *picture = data; AVFrame *const p = &s->picture; |