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 110 111 112 113 114 115 116
|
/*****************************************************************
* gmerlin-avdecoder - a general purpose multimedia decoding library
*
* Copyright (c) 2001 - 2012 Members of the Gmerlin project
* gmerlin-general@lists.sourceforge.net
* http://gmerlin.sourceforge.net
*
* 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, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <string.h>
#include <avdec_private.h>
#include <parser.h>
#include <videoparser_priv.h>
#include <bitstream.h>
static int parse_frame_vp9(bgav_video_parser_t * parser,
bgav_packet_t * p,
int64_t pts_orig)
{
int val;
bgav_bitstream_t b;
int show_frame;
int show_existing_frame;
int frame_type;
int profile;
int profile_high_bit;
int profile_low_bit;
memset(&b, 0, sizeof(b));
bgav_bitstream_init(&b, p->data, p->data_size);
// frame_marker shall be equal to 2
if(!bgav_bitstream_get(&b, &val, 2) ||
(val != 2))
{
return 0;
}
if(!bgav_bitstream_get(&b, &profile_low_bit, 1) ||
!bgav_bitstream_get(&b, &profile_high_bit, 1))
{
return 0;
}
profile = (profile_high_bit << 1) | profile_low_bit;
if(profile == 3)
{
/* reserved_zero */
if(!bgav_bitstream_get(&b, &val, 1) || (val != 0))
return 0;
}
/* Show existing frame */
if(!bgav_bitstream_get(&b, &show_existing_frame, 1))
return 0;
if(show_existing_frame)
{
PACKET_SET_CODING_TYPE(p, BGAV_CODING_TYPE_P);
return 1;
}
if(!bgav_bitstream_get(&b, &frame_type, 1) ||
!bgav_bitstream_get(&b, &show_frame, 1))
return 0;
// fprintf(stderr, "frame type: %d, show_frame: %d\n",
// frame_type, show_frame);
if(!show_frame)
p->flags |= GAVL_PACKET_NOOUTPUT;
else
{
if(!frame_type)
PACKET_SET_CODING_TYPE(p, BGAV_CODING_TYPE_I);
else
PACKET_SET_CODING_TYPE(p, BGAV_CODING_TYPE_P);
}
/*
if(!(p->data[0] & 0x10))
p->flags |= GAVL_PACKET_NOOUTPUT;
else if(PACKET_GET_KEYFRAME(p))
PACKET_SET_CODING_TYPE(p, BGAV_CODING_TYPE_I);
else
PACKET_SET_CODING_TYPE(p, BGAV_CODING_TYPE_P);
*/
return 1;
}
void bgav_video_parser_init_vp9(bgav_video_parser_t * parser)
{
parser->parse_frame = parse_frame_vp9;
}
|