[FFmpeg-cvslog] r17124 - trunk/libavformat/mxfenc.c
bcoudurier
subversion
Tue Feb 10 09:35:14 CET 2009
Author: bcoudurier
Date: Tue Feb 10 09:35:14 2009
New Revision: 17124
Log:
remove check, mxf muxer does not have track number limitation anymore
Modified:
trunk/libavformat/mxfenc.c
Modified: trunk/libavformat/mxfenc.c
==============================================================================
--- trunk/libavformat/mxfenc.c Tue Feb 10 09:31:48 2009 (r17123)
+++ trunk/libavformat/mxfenc.c Tue Feb 10 09:35:14 2009 (r17124)
@@ -1160,11 +1160,6 @@ static int mxf_write_header(AVFormatCont
uint8_t present[FF_ARRAY_ELEMS(mxf_essence_container_uls)] = {0};
const int *samples_per_frame = NULL;
- if (s->nb_streams > 17) {
- av_log(s, AV_LOG_ERROR, "error, mxf muxer supports 17 tracks maximum\n");
- return -1;
- }
-
for (i = 0; i < s->nb_streams; i++) {
AVStream *st = s->streams[i];
MXFStreamContext *sc = av_mallocz(sizeof(*sc));
More information about the ffmpeg-cvslog
mailing list