Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

About MPEG2 TS.

Rodolphe_Fouquet
Beginner
712 Views
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"
0 Kudos
1 Solution
Chao_Y_Intel
Moderator
712 Views
Hello, Is the namespace correct? try if the following can work? UMC::MPEG2_TRANSPORT_STREAM Thanks, Chao

View solution in original post

0 Kudos
2 Replies
Chao_Y_Intel
Moderator
713 Views
Hello, Is the namespace correct? try if the following can work? UMC::MPEG2_TRANSPORT_STREAM Thanks, Chao
0 Kudos
Rodolphe_Fouquet
Beginner
712 Views
That works, thanks.
0 Kudos
Reply