summaryrefslogtreecommitdiffstats
path: root/libavformat/sbgdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-12-20 18:34:44 +0100
committerMichael Niedermayer <michaelni@gmx.at>2011-12-20 18:34:44 +0100
commit154c0a8c989c4f2af9aca3d4bd3f9bf771178c2a (patch)
treecbc47348bbc2c153bc5bbecc6c07f45ea4940fca /libavformat/sbgdec.c
parentd1c1e350c6a7b3f1eedc3ec51085e3e17f1e9fbd (diff)
downloadffmpeg-streaming-154c0a8c989c4f2af9aca3d4bd3f9bf771178c2a.zip
ffmpeg-streaming-154c0a8c989c4f2af9aca3d4bd3f9bf771178c2a.tar.gz
replace ENOTSUP by AVERROR_PATCHWELCOME
This unbreaks compilation Found by: jb Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/sbgdec.c')
-rw-r--r--libavformat/sbgdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c
index 65a0839..e3a05ff 100644
--- a/libavformat/sbgdec.c
+++ b/libavformat/sbgdec.c
@@ -1467,7 +1467,7 @@ static int sbg_read_seek2(AVFormatContext *avf, int stream_index,
int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
{
if (flags || stream_index > 0)
- return AVERROR(ENOTSUP);
+ return AVERROR_PATCHWELCOME;
if (stream_index < 0)
ts = av_rescale_q(ts, AV_TIME_BASE_Q, avf->streams[0]->time_base);
avf->streams[0]->cur_dts = ts;
OpenPOWER on IntegriCloud