Commit 48b1fb13 authored by Martin Storsjö's avatar Martin Storsjö

rtmp: Reindent

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 271c869c
...@@ -234,9 +234,9 @@ int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type, ...@@ -234,9 +234,9 @@ int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type,
int timestamp, int size) int timestamp, int size)
{ {
if (size) { if (size) {
pkt->data = av_malloc(size); pkt->data = av_malloc(size);
if (!pkt->data) if (!pkt->data)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
pkt->data_size = size; pkt->data_size = size;
pkt->channel_id = channel_id; pkt->channel_id = channel_id;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment