[FFmpeg-devel] [PATCH 05/11] libavformat/mxfdec.c: Fix typo in named struct definition.
Alexis Ballier
aballier at gentoo.org
Wed Oct 21 18:00:59 CEST 2015
typedef struct MXFTrack { ... } MXFTimecodeComponent; -> typedef struct MXFTimecodeComponent { ... } MXFTimecodeComponent;
---
libavformat/mxfdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 526eca6..e16c678 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -118,7 +118,7 @@ typedef struct MXFSequence {
uint8_t origin;
} MXFSequence;
-typedef struct MXFTrack {
+typedef struct MXFTimecodeComponent {
UID uid;
enum MXFMetadataSetType type;
int drop_frame;
--
2.6.2
More information about the ffmpeg-devel
mailing list