summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-10 09:08:44 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-12 08:52:59 +0200
commitaaeb37f3856ed0c29f735962b806c2e2fbfc1540 (patch)
tree9c2672b2bce84ee51060188eae50fbe922667b68 /libavformat/internal.h
parentc19797bf59f0541d6915dab7c1568d5311757d9d (diff)
avformat/internal: Move FFERROR_REDO to demux.h
It is demuxer-only. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 44516578b0..5363c0c355 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -651,12 +651,6 @@ int ff_alloc_extradata(AVCodecParameters *par, int size);
*/
int ff_copy_whiteblacklists(AVFormatContext *dst, const AVFormatContext *src);
-/**
- * Returned by demuxers to indicate that data was consumed but discarded
- * (ignored streams or junk data). The framework will re-call the demuxer.
- */
-#define FFERROR_REDO FFERRTAG('R','E','D','O')
-
/*
* A wrapper around AVFormatContext.io_close that should be used
* instead of calling the pointer directly.