diff options
author | Marton Balint <cus@passwd.hu> | 2020-02-28 01:10:45 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2020-03-14 22:25:25 +0100 |
commit | 27a8146990e6e5f798a115b4491d0f67147c1c60 (patch) | |
tree | c60f12ece8ad29bd51f15df45d1fdbaf633cf240 /libavformat/mxf.h | |
parent | aef2016bb02fba377481789bf6a84e1176b83c25 (diff) | |
download | ffmpeg-27a8146990e6e5f798a115b4491d0f67147c1c60.tar.gz |
avformat/mxf: get rid of samples per frame array usage
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavformat/mxf.h')
-rw-r--r-- | libavformat/mxf.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavformat/mxf.h b/libavformat/mxf.h index f32124f772..2669269830 100644 --- a/libavformat/mxf.h +++ b/libavformat/mxf.h @@ -82,18 +82,12 @@ typedef struct MXFCodecUL { MXFWrappingIndicatorType wrapping_indicator_type; } MXFCodecUL; -typedef struct { - struct AVRational time_base; - int samples_per_frame[6]; -} MXFSamplesPerFrame; - extern const MXFCodecUL ff_mxf_data_definition_uls[]; extern const MXFCodecUL ff_mxf_codec_uls[]; extern const MXFCodecUL ff_mxf_pixel_format_uls[]; extern const MXFCodecUL ff_mxf_codec_tag_uls[]; int ff_mxf_decode_pixel_layout(const char pixel_layout[16], enum AVPixelFormat *pix_fmt); -const MXFSamplesPerFrame *ff_mxf_get_samples_per_frame(AVFormatContext *s, AVRational time_base); int ff_mxf_get_content_package_rate(AVRational time_base); |