diff options
author | Jochen Dolze <vdr@dolze.de> | 2010-09-16 21:37:36 +0200 |
---|---|---|
committer | Jochen Dolze <vdr@dolze.de> | 2010-09-16 21:37:36 +0200 |
commit | 57df9917d4626d93323c7b0d2368fbf5d4748627 (patch) | |
tree | ebfe76fe280db47e223335266eab1bd34afa4226 /command/streaminfo.h | |
parent | 03fc6351fce571b5ff7454bdfad9d4a0f0fb7679 (diff) | |
download | vdr-plugin-markad-57df9917d4626d93323c7b0d2368fbf5d4748627.tar.gz vdr-plugin-markad-57df9917d4626d93323c7b0d2368fbf5d4748627.tar.bz2 |
Added second pass processing (overlap, audio silence detection)
Diffstat (limited to 'command/streaminfo.h')
-rw-r--r-- | command/streaminfo.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/command/streaminfo.h b/command/streaminfo.h index 7b5ba71..4c4a957 100644 --- a/command/streaminfo.h +++ b/command/streaminfo.h @@ -23,18 +23,12 @@ private: NAL_PPS = 0x08, // Picture Parameter Set NAL_AUD = 0x09, // Access Unit Delimiter NAL_END_SEQ = 0x0A, // End of Sequence + NAL_FILLER = 0x0C, // Filler data NAL_SPS_EXT = 0x0D, // Sequence Parameter Set Extension NAL_AUX_SLICE = 0x19 // Auxilary Slice }; - struct H264 - { - bool primary_pic_typeI; - bool separate_colour_plane_flag; - int log2_max_frame_num; - int frame_num; - } H264; - + bool H264skiptoggle; int nalUnescape(uint8_t *dst, const uint8_t *src, int len); bool FindH264VideoInfos(MarkAdContext *maContext, uchar *pkt, int len); bool FindH262VideoInfos(MarkAdContext *maContext, uchar *pkt, int len); |