summaryrefslogtreecommitdiff
path: root/libavformat/argo_brp.c
diff options
context:
space:
mode:
authorZane van Iperen <zane@zanevaniperen.com>2021-07-18 09:27:11 +1000
committerZane van Iperen <zane@zanevaniperen.com>2021-07-19 14:14:39 +1000
commit981d49e373b226773e3c572e87691adf1c1d71eb (patch)
treeb95aa279677d4feaba8d2a11a0ab94ba8852ba2e /libavformat/argo_brp.c
parentf687f8e0d3a5a4b2f0159a6b83e57f9df9a15f62 (diff)
downloadffmpeg-981d49e373b226773e3c572e87691adf1c1d71eb.tar.gz
avformat/argo_brp: use bits_per_coded_sample instead of bits_per_raw_sample
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/argo_brp.c')
-rw-r--r--libavformat/argo_brp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/argo_brp.c b/libavformat/argo_brp.c
index 059418cd1d..2ccdbd3e5b 100644
--- a/libavformat/argo_brp.c
+++ b/libavformat/argo_brp.c
@@ -230,7 +230,7 @@ static int argo_brp_read_header(AVFormatContext *s)
st->codecpar->width = bvid->width;
st->codecpar->height = bvid->height;
st->nb_frames = bvid->num_frames;
- st->codecpar->bits_per_raw_sample = bvid->depth;
+ st->codecpar->bits_per_coded_sample = bvid->depth;
} else if (hdr->codec_id == BRP_CODEC_ID_BASF) {
/*
* It would make the demuxer significantly more complicated