mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
avcodec/avpacket: fix whitespace
Signed-off-by: Aman Gupta <aman@tmm1.net>
This commit is contained in:
parent
f6d48b618a
commit
0c14b73e43
@ -580,10 +580,10 @@ FF_ENABLE_DEPRECATION_WARNINGS
|
|||||||
dst->side_data = NULL;
|
dst->side_data = NULL;
|
||||||
dst->side_data_elems = 0;
|
dst->side_data_elems = 0;
|
||||||
for (i = 0; i < src->side_data_elems; i++) {
|
for (i = 0; i < src->side_data_elems; i++) {
|
||||||
enum AVPacketSideDataType type = src->side_data[i].type;
|
enum AVPacketSideDataType type = src->side_data[i].type;
|
||||||
int size = src->side_data[i].size;
|
int size = src->side_data[i].size;
|
||||||
uint8_t *src_data = src->side_data[i].data;
|
uint8_t *src_data = src->side_data[i].data;
|
||||||
uint8_t *dst_data = av_packet_new_side_data(dst, type, size);
|
uint8_t *dst_data = av_packet_new_side_data(dst, type, size);
|
||||||
|
|
||||||
if (!dst_data) {
|
if (!dst_data) {
|
||||||
av_packet_free_side_data(dst);
|
av_packet_free_side_data(dst);
|
||||||
|
Loading…
Reference in New Issue
Block a user