diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-10 12:05:46 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-07-10 16:58:07 +0200 |
commit | 7259eef711a52cfa0face2a7d637f4e3f1c6aa43 (patch) | |
tree | 4c42b2f337330a0daf1cf65abc594d1dc3d9c410 /libavcodec | |
parent | c6fdbe26ef30fff817581e5ed6e078d96111248a (diff) | |
download | ffmpeg-7259eef711a52cfa0face2a7d637f4e3f1c6aa43.tar.gz |
avcodec/pcm-dvdenc: Remove unused extra_sample(s|_count)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/pcm-dvdenc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/pcm-dvdenc.c b/libavcodec/pcm-dvdenc.c index 6bab1e0aaa..c7f1d46ba3 100644 --- a/libavcodec/pcm-dvdenc.c +++ b/libavcodec/pcm-dvdenc.c @@ -31,8 +31,6 @@ typedef struct PCMDVDContext { int block_size; // Size of a block of samples in bytes int samples_per_block; // Number of samples per channel per block int groups_per_block; // Number of 20/24-bit sample groups per block - uint8_t *extra_samples; // Pointer to leftover samples from a frame - int extra_sample_count; // Number of leftover samples in the buffer } PCMDVDContext; static av_cold int pcm_dvd_encode_init(AVCodecContext *avctx) |