Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MPEG2HeaderParser.cpp « parsers « LAVVideo « decoder - github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a835ff55af7dd9eece47daba493f49ad958d4a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 *      Copyright (C) 2010-2015 Hendrik Leppkes
 *      http://www.1f0.de
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License along
 *  with this program; if not, write to the Free Software Foundation, Inc.,
 *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "stdafx.h"
#include "MPEG2HeaderParser.h"

#pragma warning( push )
#pragma warning( disable : 4018 )
#pragma warning( disable : 4244 )
#define AVCODEC_X86_MATHOPS_H
#include "libavcodec/get_bits.h"
#pragma warning( pop )

#define SEQ_START_CODE          0x000001b3
#define EXT_START_CODE          0x000001b5

static inline const uint8_t* find_next_marker(const uint8_t *src, const uint8_t *end)
{
  uint32_t mrk = 0xFFFFFFFF;

  if(end-src < 4) return end;
  while(src < end){
    mrk = (mrk << 8) | *src++;
    if((mrk & ~0xFF) == 0x00000100)
      return src-4;
  }
  return end;
}

CMPEG2HeaderParser::CMPEG2HeaderParser(const BYTE *pData, size_t length)
{
  memset(&hdr, 0, sizeof(hdr));
  ParseMPEG2Header(pData, length);
}

CMPEG2HeaderParser::~CMPEG2HeaderParser(void)
{
}

void CMPEG2HeaderParser::ParseMPEG2Header(const BYTE *pData, size_t length)
{
  if (length < 16)
    return;

  GetBitContext gb;

  const uint8_t *start = pData;
  const uint8_t *end = start + length;
  const uint8_t *next = nullptr;

  int size;

  start = find_next_marker(start, end);
  next = start;

  for(; next < end; start = next) {
    next = find_next_marker(start + 4, end);
    size = (int)(next - start - 4);
    if(size <= 0) continue;

    init_get_bits(&gb, start + 4, (size - 4) * 8);

    switch(AV_RB32(start)) {
      case SEQ_START_CODE:
        MPEG2ParseSequenceHeader(&gb);
        break;
      case EXT_START_CODE:
        MPEG2ParseExtHeader(&gb);
        break;
    }
  }
}

void CMPEG2HeaderParser::MPEG2ParseSequenceHeader(GetBitContext *gb)
{
}

void CMPEG2HeaderParser::MPEG2ParseExtHeader(GetBitContext *gb)
{
  int startcode = get_bits(gb, 4); // Start Code
  if (startcode == 1) {
    hdr.valid = 1;

    skip_bits(gb, 1); // profile and level esc
    hdr.profile = get_bits(gb, 3);
    hdr.level = get_bits(gb, 4);

    hdr.interlaced = !get_bits1(gb);
    hdr.chroma = get_bits(gb, 2);

    // TODO: Fill in other fields, if needed
  }
}