forked from huceke/omxplayer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
huceke
committed
Mar 22, 2012
0 parents
commit 306e265
Showing
72 changed files
with
23,271 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
/* | ||
* Copyright (C) 2010 Team XBMC | ||
* http://www.xbmc.org | ||
* | ||
* 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, 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 XBMC; see the file COPYING. If not, write to | ||
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | ||
* http://www.gnu.org/copyleft/gpl.html | ||
* | ||
*/ | ||
|
||
#ifndef _BITSTREAMCONVERTER_H_ | ||
#define _BITSTREAMCONVERTER_H_ | ||
|
||
#include <stdint.h> | ||
#include "DllAvUtil.h" | ||
#include "DllAvFormat.h" | ||
#include "DllAvFilter.h" | ||
#include "DllAvCodec.h" | ||
#include "DllAvCore.h" | ||
|
||
typedef struct { | ||
uint8_t *buffer, *start; | ||
int offbits, length, oflow; | ||
} bits_reader_t; | ||
|
||
//////////////////////////////////////////////////////////////////////////////////////////// | ||
// TODO: refactor this so as not to need these ffmpeg routines. | ||
// These are not exposed in ffmpeg's API so we dupe them here. | ||
// AVC helper functions for muxers, | ||
// * Copyright (c) 2006 Baptiste Coudurier <[email protected]> | ||
// This is part of FFmpeg | ||
// * License as published by the Free Software Foundation; either | ||
// * version 2.1 of the License, or (at your option) any later version. | ||
#define OMX_RB16(x) \ | ||
((((const uint8_t*)(x))[0] << 8) | \ | ||
((const uint8_t*)(x)) [1]) | ||
|
||
#define OMX_RB24(x) \ | ||
((((const uint8_t*)(x))[0] << 16) | \ | ||
(((const uint8_t*)(x))[1] << 8) | \ | ||
((const uint8_t*)(x))[2]) | ||
|
||
#define OMX_RB32(x) \ | ||
((((const uint8_t*)(x))[0] << 24) | \ | ||
(((const uint8_t*)(x))[1] << 16) | \ | ||
(((const uint8_t*)(x))[2] << 8) | \ | ||
((const uint8_t*)(x))[3]) | ||
|
||
#define OMX_WB32(p, d) { \ | ||
((uint8_t*)(p))[3] = (d); \ | ||
((uint8_t*)(p))[2] = (d) >> 8; \ | ||
((uint8_t*)(p))[1] = (d) >> 16; \ | ||
((uint8_t*)(p))[0] = (d) >> 24; } | ||
|
||
typedef struct | ||
{ | ||
const uint8_t *data; | ||
const uint8_t *end; | ||
int head; | ||
uint64_t cache; | ||
} nal_bitstream; | ||
|
||
typedef struct | ||
{ | ||
int profile_idc; | ||
int level_idc; | ||
int sps_id; | ||
|
||
int chroma_format_idc; | ||
int separate_colour_plane_flag; | ||
int bit_depth_luma_minus8; | ||
int bit_depth_chroma_minus8; | ||
int qpprime_y_zero_transform_bypass_flag; | ||
int seq_scaling_matrix_present_flag; | ||
|
||
int log2_max_frame_num_minus4; | ||
int pic_order_cnt_type; | ||
int log2_max_pic_order_cnt_lsb_minus4; | ||
|
||
int max_num_ref_frames; | ||
int gaps_in_frame_num_value_allowed_flag; | ||
int pic_width_in_mbs_minus1; | ||
int pic_height_in_map_units_minus1; | ||
|
||
int frame_mbs_only_flag; | ||
int mb_adaptive_frame_field_flag; | ||
|
||
int direct_8x8_inference_flag; | ||
|
||
int frame_cropping_flag; | ||
int frame_crop_left_offset; | ||
int frame_crop_right_offset; | ||
int frame_crop_top_offset; | ||
int frame_crop_bottom_offset; | ||
} sps_info_struct; | ||
|
||
class CBitstreamConverter | ||
{ | ||
public: | ||
CBitstreamConverter(); | ||
~CBitstreamConverter(); | ||
// Required overrides | ||
static void bits_reader_set( bits_reader_t *br, uint8_t *buf, int len ); | ||
static uint32_t read_bits( bits_reader_t *br, int nbits ); | ||
static void skip_bits( bits_reader_t *br, int nbits ); | ||
static uint32_t get_bits( bits_reader_t *br, int nbits ); | ||
|
||
bool Open(enum CodecID codec, uint8_t *in_extradata, int in_extrasize, bool to_annexb); | ||
void Close(void); | ||
bool NeedConvert(void) { return m_convert_bitstream; }; | ||
bool Convert(uint8_t *pData, int iSize); | ||
uint8_t *GetConvertBuffer(void); | ||
int GetConvertSize(); | ||
uint8_t *GetExtraData(void); | ||
int GetExtraSize(); | ||
void parseh264_sps(uint8_t *sps, uint32_t sps_size, bool *interlaced, int32_t *max_ref_frames); | ||
protected: | ||
// bytestream (Annex B) to bistream conversion support. | ||
void nal_bs_init(nal_bitstream *bs, const uint8_t *data, size_t size); | ||
uint32_t nal_bs_read(nal_bitstream *bs, int n); | ||
bool nal_bs_eos(nal_bitstream *bs); | ||
int nal_bs_read_ue(nal_bitstream *bs); | ||
const uint8_t *avc_find_startcode_internal(const uint8_t *p, const uint8_t *end); | ||
const uint8_t *avc_find_startcode(const uint8_t *p, const uint8_t *end); | ||
const int avc_parse_nal_units(ByteIOContext *pb, const uint8_t *buf_in, int size); | ||
const int avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size); | ||
const int isom_write_avcc(ByteIOContext *pb, const uint8_t *data, int len); | ||
// bitstream to bytestream (Annex B) conversion support. | ||
bool BitstreamConvertInit(void *in_extradata, int in_extrasize); | ||
bool BitstreamConvert(uint8_t* pData, int iSize, uint8_t **poutbuf, int *poutbuf_size); | ||
void BitstreamAllocAndCopy( uint8_t **poutbuf, int *poutbuf_size, | ||
const uint8_t *sps_pps, uint32_t sps_pps_size, const uint8_t *in, uint32_t in_size); | ||
|
||
typedef struct omx_bitstream_ctx { | ||
uint8_t length_size; | ||
uint8_t first_idr; | ||
uint8_t *sps_pps_data; | ||
uint32_t size; | ||
} omx_bitstream_ctx; | ||
|
||
uint8_t *m_convertBuffer; | ||
int m_convertSize; | ||
uint8_t *m_inputBuffer; | ||
int m_inputSize; | ||
|
||
uint32_t m_sps_pps_size; | ||
omx_bitstream_ctx m_sps_pps_context; | ||
bool m_convert_bitstream; | ||
bool m_to_annexb; | ||
bool m_convert_vc1; | ||
|
||
uint8_t *m_extradata; | ||
int m_extrasize; | ||
bool m_convert_3byteTo4byteNALSize; | ||
bool m_convert_bytestream; | ||
DllAvUtil *m_dllAvUtil; | ||
DllAvFormat *m_dllAvFormat; | ||
CodecID m_codec; | ||
}; | ||
|
||
#endif |
Oops, something went wrong.