mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
23 lines
770 B
C++
23 lines
770 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef OMXCodecDescriptorUtil_h_
|
|
#define OMXCodecDescriptorUtil_h_
|
|
|
|
#include <stagefright/foundation/ABuffer.h>
|
|
#include <stagefright/MediaErrors.h>
|
|
|
|
#include <nsTArray.h>
|
|
|
|
namespace android {
|
|
|
|
// Generate decoder config descriptor (defined in ISO/IEC 14496-15 5.2.4.1.1)
|
|
// for AVC/H.264 using codec config blob from encoder.
|
|
status_t GenerateAVCDescriptorBlob(ABuffer* aData,
|
|
nsTArray<uint8_t>* aOutputBuf);
|
|
|
|
}
|
|
|
|
#endif // OMXCodecDescriptorUtil_h_
|