diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-05 11:39:46 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-06-09 10:59:33 +0200 |
commit | 4482b3353d07684fdd5822b80814ebac1c9de765 (patch) | |
tree | 63abcc05d87b70d7ed37b2103c5665fb4f0b12d9 /tests | |
parent | 52fb49a8a3171fdb4a1913e5ec0307a14f60a1e5 (diff) | |
download | ffmpeg-4482b3353d07684fdd5822b80814ebac1c9de765.tar.gz |
avformat/vvc: Don't use ff_copy_bits()
There is no benefit in using it: The fast path of copying
is not taken because of misalignment; furthermore we are
only dealing with a few byte here anyway, so simply copy
the bytes manually, avoiding the dependency on bitstream.c
in lavf (which also contains a function that is completely
unused in lavf).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ref/fate/source | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ref/fate/source b/tests/ref/fate/source index a3beb35093..d7b48a8b85 100644 --- a/tests/ref/fate/source +++ b/tests/ref/fate/source @@ -7,7 +7,6 @@ libavdevice/file_open.c libavdevice/reverse.c libavfilter/file_open.c libavfilter/log2_tab.c -libavformat/bitstream.c libavformat/file_open.c libavformat/golomb_tab.c libavformat/log2_tab.c |