diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-08-23 10:20:15 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-09-05 08:00:57 +0200 |
commit | dcc4704a4e818a2f25766a62d780c021126ea8a5 (patch) | |
tree | e53c57925e7d685564e28680a7062b065f4a449c /libavformat/dv.h | |
parent | f89949afed7a538db603f32d463fe9547bc439a7 (diff) | |
download | ffmpeg-dcc4704a4e818a2f25766a62d780c021126ea8a5.tar.gz |
lavf/dv: remove DVMuxContext declaration from dv.h
DVMuxContext is only used inside dvenc.c, there is no reason for it to
be visible outside of that file.
Diffstat (limited to 'libavformat/dv.h')
-rw-r--r-- | libavformat/dv.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/dv.h b/libavformat/dv.h index 160c6ab873..efced6ccf0 100644 --- a/libavformat/dv.h +++ b/libavformat/dv.h @@ -1,5 +1,5 @@ /* - * General DV muxer/demuxer + * General DV demuxer * Copyright (c) 2003 Roman Shaposhnik * * Many thanks to Dan Dennedy <dan@dennedy.org> for providing wealth @@ -36,6 +36,4 @@ int avpriv_dv_get_packet(DVDemuxContext*, AVPacket *); int avpriv_dv_produce_packet(DVDemuxContext*, AVPacket*, uint8_t*, int, int64_t); void ff_dv_offset_reset(DVDemuxContext *c, int64_t frame_offset); -typedef struct DVMuxContext DVMuxContext; - #endif /* AVFORMAT_DV_H */ |