diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-02 09:14:29 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-08-05 09:40:06 +0200 |
commit | 00597af58b76779c315d792232008466f3506ae3 (patch) | |
tree | 953eb889eedcde9f32caddc25601235be29dfb10 /libavdevice | |
parent | 7469f2ec0ab31c91b409644867c0e977db50a4b0 (diff) | |
download | ffmpeg-00597af58b76779c315d792232008466f3506ae3.tar.gz |
avdevice/pulse_audio_common: Avoid inclusion of avcodec.h
It only needs codec_id.h.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/pulse_audio_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/pulse_audio_common.h b/libavdevice/pulse_audio_common.h index 902795e4f7..9def3cb796 100644 --- a/libavdevice/pulse_audio_common.h +++ b/libavdevice/pulse_audio_common.h @@ -23,7 +23,7 @@ #define AVDEVICE_PULSE_AUDIO_COMMON_H #include <pulse/pulseaudio.h> -#include "libavcodec/avcodec.h" +#include "libavcodec/codec_id.h" #include "avdevice.h" pa_sample_format_t ff_codec_id_to_pulse_format(enum AVCodecID codec_id); |