summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/a64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/a64.c b/libavformat/a64.c
index 802235f404..03679b2838 100644
--- a/libavformat/a64.c
+++ b/libavformat/a64.c
@@ -37,7 +37,7 @@ static int a64_write_header(AVFormatContext *s)
if (avctx->extradata_size < 4) {
av_log(s, AV_LOG_ERROR, "Missing extradata\n");
- return AVERROR(EINVAL);
+ return AVERROR_INVALIDDATA;
}
switch (avctx->codec->id) {
@@ -52,7 +52,7 @@ static int a64_write_header(AVFormatContext *s)
header[4] = 3;
break;
default:
- return AVERROR(EINVAL);
+ return AVERROR_INVALIDDATA;
}
avio_write(s->pb, header, 2);
return 0;