diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-11-09 15:35:22 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-11-19 20:32:49 +0100 |
commit | 17c8533745305bdf9c26c87dcbc43453ed6f0804 (patch) | |
tree | a9cbf8a0ff0a422e71073359da4c740d87485104 /libavcodec/dnxhd_parser.c | |
parent | b9a26b9d55f77ebbff3596e46be54bb5fed469d3 (diff) | |
download | ffmpeg-17c8533745305bdf9c26c87dcbc43453ed6f0804.tar.gz |
avcodec/dnxhddata: Unavpriv dnxhd_get_(hr_|)_frame_size()
It is no longer used in libavformat.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/dnxhd_parser.c')
-rw-r--r-- | libavcodec/dnxhd_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dnxhd_parser.c b/libavcodec/dnxhd_parser.c index 4ba619c9bb..631ac83860 100644 --- a/libavcodec/dnxhd_parser.c +++ b/libavcodec/dnxhd_parser.c @@ -73,9 +73,9 @@ static int dnxhd_find_frame_end(DNXHDParserContext *dctx, if (cid <= 0) continue; - remaining = avpriv_dnxhd_get_frame_size(cid); + remaining = ff_dnxhd_get_frame_size(cid); if (remaining <= 0) { - remaining = avpriv_dnxhd_get_hr_frame_size(cid, dctx->w, dctx->h); + remaining = ff_dnxhd_get_hr_frame_size(cid, dctx->w, dctx->h); if (remaining <= 0) continue; } |