summaryrefslogtreecommitdiff
path: root/libavcodec/lclenc.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2014-12-17 14:53:42 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-12-18 23:27:14 +0100
commitac467d94fa6d9d626f77d4ca8125a5eb1ad5425d (patch)
tree9a8f9d1122ea5d2ee38e090ecfdd7bff7da6e042 /libavcodec/lclenc.c
parent8b263331c5ebbb10b6ea521e9fd56751ba94254b (diff)
lcl: return an appropriate error code
Diffstat (limited to 'libavcodec/lclenc.c')
-rw-r--r--libavcodec/lclenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lclenc.c b/libavcodec/lclenc.c
index 878d1e16f8..acf5e73b6b 100644
--- a/libavcodec/lclenc.c
+++ b/libavcodec/lclenc.c
@@ -164,7 +164,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
zret = deflateInit(&c->zstream, c->compression);
if (zret != Z_OK) {
av_log(avctx, AV_LOG_ERROR, "Deflate init error: %d\n", zret);
- return 1;
+ return AVERROR_UNKNOWN;
}
return 0;