summaryrefslogtreecommitdiff
path: root/libavcodec/flac.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-28 15:21:27 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-09-02 11:55:22 +0200
commit17b1375965593e688c3e12ddbbb7298c5140b9e1 (patch)
treeea3914945e99be0a4bfb06a3c762b2f3e6e240df /libavcodec/flac.h
parentff1f5b407df8e8740eb6eeee83b202284f6ace7a (diff)
downloadffmpeg-17b1375965593e688c3e12ddbbb7298c5140b9e1.tar.gz
avcodec/flac: Move ff_flac_get_max_frame_size() to flacenc.c
It is its only user. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/flac.h')
-rw-r--r--libavcodec/flac.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavcodec/flac.h b/libavcodec/flac.h
index 315df492a3..239e842716 100644
--- a/libavcodec/flac.h
+++ b/libavcodec/flac.h
@@ -110,14 +110,6 @@ int ff_flac_is_extradata_valid(AVCodecContext *avctx,
uint8_t **streaminfo_start);
/**
- * Calculate an estimate for the maximum frame size based on verbatim mode.
- * @param blocksize block size, in samples
- * @param ch number of channels
- * @param bps bits-per-sample
- */
-int ff_flac_get_max_frame_size(int blocksize, int ch, int bps);
-
-/**
* Validate and decode a frame header.
* @param avctx AVCodecContext to use as av_log() context
* @param gb GetBitContext from which to read frame header