mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
add side data to indicate the amount of samples to skip at the begin and end
Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Reveiwed-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
636dbe2678
commit
9862cbd7a4
@ -854,6 +854,17 @@ enum AVPacketSideDataType {
|
|||||||
* @endcode
|
* @endcode
|
||||||
*/
|
*/
|
||||||
AV_PKT_DATA_H263_MB_INFO,
|
AV_PKT_DATA_H263_MB_INFO,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Recommmends skipping the specified number of samples
|
||||||
|
* @code
|
||||||
|
* u32le number of samples to skip from start of this packet
|
||||||
|
* u32le number of samples to skip from end of this packet
|
||||||
|
* u8 reason for start skip
|
||||||
|
* u8 reason for end skip (0=padding silence, 1=convergence)
|
||||||
|
* @endcode
|
||||||
|
*/
|
||||||
|
AV_PKT_DATA_SKIP_SAMPLES=70,
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct AVPacket {
|
typedef struct AVPacket {
|
||||||
|
Loading…
Reference in New Issue
Block a user