summaryrefslogtreecommitdiff
path: root/libavformat/flacdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-06-07 19:49:20 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-08 16:03:17 +0200
commit779dba0fc0f16cf4ddceba0b6527301889b58ccf (patch)
tree9a3ea2d1cb442f436507cfdb1e97a2f164c8e1c1 /libavformat/flacdec.c
parentcd564ee547de3ffee1764e9c3bbc055556af2482 (diff)
downloadffmpeg-779dba0fc0f16cf4ddceba0b6527301889b58ccf.tar.gz
avformat/flacdec, takdec: Use FFRawDemuxerContext directly
The beginning of the private contexts of both the FLAC and the TAK demuxer currently mimick FFRawDemuxerContext: A pointer to an AVClass followed by the AVOpt-enabled field raw_packet_size. Said field is only used by the demuxers' read_packet functions via ff_raw_read_partial_packet(), which treats the private context as an FFRaawDemuxerContext. Yet this is fragile, so better include a FFRawDemuxerContext struct at the beginning of said demuxers' private contexts. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r--libavformat/flacdec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c
index d4158032e4..c841fdba01 100644
--- a/libavformat/flacdec.c
+++ b/libavformat/flacdec.c
@@ -31,8 +31,7 @@
#define SEEKPOINT_SIZE 18
typedef struct FLACDecContext {
- AVClass *class;
- int raw_packet_size;
+ FFRawDemuxerContext rawctx;
int found_seektable;
} FLACDecContext;