You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
bsf: use standard include paths
Removes the special -I flag specified in the avcodec/bsf/ subdirectory. This makes code copy-pastable to other parts of the ffmpeg codebase, as well as simplifying the build script. It also reduces ambiguity, since there are many instances of same-named header files existing in both libavformat/ and libavcodec/ subdirectories. Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
9dbc9a0f97
commit
41b73ae883
@ -32,10 +32,10 @@
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
|
||||
#include "bsf.h"
|
||||
#include "bsf_internal.h"
|
||||
#include "cbs.h"
|
||||
#include "cbs_av1.h"
|
||||
#include "libavcodec/bsf.h"
|
||||
#include "libavcodec/bsf_internal.h"
|
||||
#include "libavcodec/cbs.h"
|
||||
#include "libavcodec/cbs_av1.h"
|
||||
|
||||
typedef struct AV1FSplitContext {
|
||||
AVPacket *buffer_pkt;
|
||||
|
Reference in New Issue
Block a user