About MPEG2 TS.

About MPEG2 TS.

Rodolphe Fouquet's picture

Hello (yeah, it's me again),
I'm trying to make a little MPEG2 TS muxer with an AAC stream and a H264 one.>However, when I try to initialize the MPEG2 muxer by doing this:

muxerParams.m_SystemType = MPEG2_TRANSPORT_STREAM;

I have that...

error: MPEG2_TRANSPORT_STREAM was not declared in this scope

And there is the list of includes I have in my cpp file.>
#include "ippcore.h"
#include "umc_structures.h" #include "vm_strings.h"
#include "umc_media_data.h"
#include "umc_video_data.h" #include "umc_data_writer.h" #include "umc_muxer.h" #include "umc_muxers.h"
#include "umc_mpeg2_muxer.h"
#include "umc_file_reader.h" #include "umc_file_writer.h"

3 posts / 0 new
Last post
For more complete information about compiler optimizations, see our Optimization Notice.
Chao Y (Intel)'s picture
Best Reply

Hello,

Is the namespace correct? try if the following can work?
UMC::MPEG2_TRANSPORT_STREAM

Thanks,
Chao

Rodolphe Fouquet's picture

That works, thanks.

Login to leave a comment.