mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
10l, check container_ul existence
Originally committed as revision 5907 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c2e8805441
commit
f0d4729212
@ -41,7 +41,7 @@
|
|||||||
* Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
|
* Only tracks with associated descriptors will be decoded. "Highly Desirable" SMPTE 377M D.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//#define DEBUG
|
#define DEBUG
|
||||||
|
|
||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
|
|
||||||
@ -840,7 +840,7 @@ static int mxf_parse_structural_metadata(MXFContext *mxf)
|
|||||||
st->codec->codec_id = CODEC_ID_PCM_S32BE;
|
st->codec->codec_id = CODEC_ID_PCM_S32BE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (container_ul->wrapping == Clip) {
|
if (container_ul && container_ul->wrapping == Clip) {
|
||||||
dprintf("stream %d: clip wrapped essence\n", st->index);
|
dprintf("stream %d: clip wrapped essence\n", st->index);
|
||||||
st->need_parsing = 1;
|
st->need_parsing = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user