diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-01-10 12:10:58 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-01-30 09:51:57 +0100 |
commit | 3b84140a1bb5a5b3044915888a40a7b619921633 (patch) | |
tree | a98a462fa8b06a23db9ed5c6802b1b59c4fa61de /fftools/ffmpeg.h | |
parent | 0291b6f824c5cbae5d919559845df4e73dcc459a (diff) | |
download | ffmpeg-3b84140a1bb5a5b3044915888a40a7b619921633.tar.gz |
fftools/ffmpeg_dec: split Decoder into a private and public part
Similar to what is currently done for other components, e.g. (de)muxers.
There is nothing in the public part currently, but that will change in
future commits.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 3014a626b4..429c1aba85 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -280,7 +280,9 @@ typedef struct FilterGraph { int nb_outputs; } FilterGraph; -typedef struct Decoder Decoder; +typedef struct Decoder { + char dummy; +} Decoder; typedef struct InputStream { const AVClass *class; |