mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit 'a9a60106370f862e191dea58e748626da6a8fe97'
* commit 'a9a60106370f862e191dea58e748626da6a8fe97': avpacket: Provide an alloc and a free function for the struct Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
3ec049b85d
@ -20,6 +20,8 @@ API changes, most recent first:
|
|||||||
it resets the packet in a more consistent way.
|
it resets the packet in a more consistent way.
|
||||||
xxxxxx - Deprecate av_dup_packet(), it is a no-op for most cases.
|
xxxxxx - Deprecate av_dup_packet(), it is a no-op for most cases.
|
||||||
Use av_packet_ref() to make a non-refcounted AVPacket refcounted.
|
Use av_packet_ref() to make a non-refcounted AVPacket refcounted.
|
||||||
|
xxxxxx - Add av_packet_alloc(), av_packet_clone(), av_packet_free().
|
||||||
|
They match the AVFrame functions with the same name.
|
||||||
|
|
||||||
2015-10-27 - xxxxxxx - lavu 55.5.100 - cpu.h
|
2015-10-27 - xxxxxxx - lavu 55.5.100 - cpu.h
|
||||||
Add AV_CPU_FLAG_AESNI.
|
Add AV_CPU_FLAG_AESNI.
|
||||||
|
@ -3847,6 +3847,40 @@ void avsubtitle_free(AVSubtitle *sub);
|
|||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allocate an AVPacket and set its fields to default values. The resulting
|
||||||
|
* struct must be freed using av_packet_free().
|
||||||
|
*
|
||||||
|
* @return An AVPacket filled with default values or NULL on failure.
|
||||||
|
*
|
||||||
|
* @note this only allocates the AVPacket itself, not the data buffers. Those
|
||||||
|
* must be allocated through other means such as av_new_packet.
|
||||||
|
*
|
||||||
|
* @see av_new_packet
|
||||||
|
*/
|
||||||
|
AVPacket *av_packet_alloc(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new packet that references the same data as src.
|
||||||
|
*
|
||||||
|
* This is a shortcut for av_packet_alloc()+av_packet_ref().
|
||||||
|
*
|
||||||
|
* @return newly created AVPacket on success, NULL on error.
|
||||||
|
*
|
||||||
|
* @see av_packet_alloc
|
||||||
|
* @see av_packet_ref
|
||||||
|
*/
|
||||||
|
AVPacket *av_packet_clone(AVPacket *src);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Free the packet, if the packet is reference counted, it will be
|
||||||
|
* unreferenced first.
|
||||||
|
*
|
||||||
|
* @param packet packet to be freed. The pointer will be set to NULL.
|
||||||
|
* @note passing NULL is a no-op.
|
||||||
|
*/
|
||||||
|
void av_packet_free(AVPacket **pkt);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize optional fields of a packet with default values.
|
* Initialize optional fields of a packet with default values.
|
||||||
*
|
*
|
||||||
|
@ -48,6 +48,26 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||||||
pkt->side_data_elems = 0;
|
pkt->side_data_elems = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AVPacket *av_packet_alloc(void)
|
||||||
|
{
|
||||||
|
AVPacket *pkt = av_mallocz(sizeof(AVPacket));
|
||||||
|
if (!pkt)
|
||||||
|
return pkt;
|
||||||
|
|
||||||
|
av_packet_unref(pkt);
|
||||||
|
|
||||||
|
return pkt;
|
||||||
|
}
|
||||||
|
|
||||||
|
void av_packet_free(AVPacket **pkt)
|
||||||
|
{
|
||||||
|
if (!pkt || !*pkt)
|
||||||
|
return;
|
||||||
|
|
||||||
|
av_packet_unref(*pkt);
|
||||||
|
av_freep(pkt);
|
||||||
|
}
|
||||||
|
|
||||||
static int packet_alloc(AVBufferRef **buf, int size)
|
static int packet_alloc(AVBufferRef **buf, int size)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
@ -542,6 +562,19 @@ fail:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AVPacket *av_packet_clone(AVPacket *src)
|
||||||
|
{
|
||||||
|
AVPacket *ret = av_packet_alloc();
|
||||||
|
|
||||||
|
if (!ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
if (av_packet_ref(ret, src))
|
||||||
|
av_packet_free(&ret);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
|
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
|
||||||
{
|
{
|
||||||
*dst = *src;
|
*dst = *src;
|
||||||
|
Loading…
Reference in New Issue
Block a user