diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-19 15:38:33 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-07-19 15:38:33 +0000 |
commit | 85565db0f8b85dc2bb2df2e788be1918eda3ed04 (patch) | |
tree | e6d75e608a581441da9c3670608093e71d02265c /libavformat/matroskadec.c | |
parent | 5632e568c041ee2d6db8d963280b433b3f0c0b80 (diff) | |
download | ffmpeg-85565db0f8b85dc2bb2df2e788be1918eda3ed04.tar.gz |
Replace all occurrences of AVERROR_NOTSUPP with AVERROR(ENOSYS).
Originally committed as revision 9763 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r-- | libavformat/matroskadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c index c12e55ffdf..5430821eb4 100644 --- a/libavformat/matroskadec.c +++ b/libavformat/matroskadec.c @@ -547,7 +547,7 @@ ebml_read_master (MatroskaDemuxContext *matroska, if (matroska->num_levels >= EBML_MAX_DEPTH) { av_log(matroska->ctx, AV_LOG_ERROR, "File moves beyond max. allowed depth (%d)\n", EBML_MAX_DEPTH); - return AVERROR_NOTSUPP; + return AVERROR(ENOSYS); } /* remember level */ |