summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-02-26 11:33:09 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:09 -0300
commit30f7021aa0be2c978aefb73894b643c9bafbf51c (patch)
treec76bbb0a48db2fd00fa2768b06680fa2ccf9f1d4 /libavformat/avformat.h
parent704017d91ec8fbade0de072d222018c1a6013b70 (diff)
downloadffmpeg-30f7021aa0be2c978aefb73894b643c9bafbf51c.tar.gz
avformat: Remove deprecated filename field from AVFormatContext
Deprecated in fa8308d3d4f27d6fb38ac2069887a7b259f1c6ab. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index d629eaae5d..d0cc12f931 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1255,19 +1255,6 @@ typedef struct AVFormatContext {
*/
AVStream **streams;
-#if FF_API_FORMAT_FILENAME
- /**
- * input or output filename
- *
- * - demuxing: set by avformat_open_input()
- * - muxing: may be set by the caller before avformat_write_header()
- *
- * @deprecated Use url instead.
- */
- attribute_deprecated
- char filename[1024];
-#endif
-
/**
* input or output URL. Unlike the old filename field, this field has no
* length restriction.