Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
199fb402
Commit
199fb402
authored
Feb 24, 2015
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtpdec: Use ffio_free_dyn_buf
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
8a273a74
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
39 additions
and
127 deletions
+39
-127
rtpdec_ac3.c
libavformat/rtpdec_ac3.c
+5
-14
rtpdec_asf.c
libavformat/rtpdec_asf.c
+2
-10
rtpdec_dv.c
libavformat/rtpdec_dv.c
+3
-10
rtpdec_h261.c
libavformat/rtpdec_h261.c
+3
-12
rtpdec_h263_rfc2190.c
libavformat/rtpdec_h263_rfc2190.c
+3
-9
rtpdec_jpeg.c
libavformat/rtpdec_jpeg.c
+4
-13
rtpdec_latm.c
libavformat/rtpdec_latm.c
+3
-9
rtpdec_mpa_robust.c
libavformat/rtpdec_mpa_robust.c
+4
-13
rtpdec_svq3.c
libavformat/rtpdec_svq3.c
+3
-10
rtpdec_vp8.c
libavformat/rtpdec_vp8.c
+5
-14
rtpdec_xiph.c
libavformat/rtpdec_xiph.c
+4
-13
No files found.
libavformat/rtpdec_ac3.c
View file @
199fb402
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*/
*/
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
#define RTP_AC3_PAYLOAD_HEADER_SIZE 2
#define RTP_AC3_PAYLOAD_HEADER_SIZE 2
...
@@ -31,19 +32,9 @@ struct PayloadContext {
...
@@ -31,19 +32,9 @@ struct PayloadContext {
AVIOContext
*
fragment
;
AVIOContext
*
fragment
;
};
};
static
void
free_fragment
(
PayloadContext
*
data
)
{
if
(
data
->
fragment
)
{
uint8_t
*
p
;
avio_close_dyn_buf
(
data
->
fragment
,
&
p
);
av_free
(
p
);
data
->
fragment
=
NULL
;
}
}
static
void
ac3_free_context
(
PayloadContext
*
data
)
static
void
ac3_free_context
(
PayloadContext
*
data
)
{
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
}
}
static
int
ac3_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
static
int
ac3_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
...
@@ -82,7 +73,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -82,7 +73,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
case
1
:
case
1
:
case
2
:
/* First fragment */
case
2
:
/* First fragment */
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
data
->
last_frame
=
1
;
data
->
last_frame
=
1
;
data
->
nr_frames
=
nr_frames
;
data
->
nr_frames
=
nr_frames
;
...
@@ -102,7 +93,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -102,7 +93,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
}
}
if
(
nr_frames
!=
data
->
nr_frames
||
if
(
nr_frames
!=
data
->
nr_frames
||
data
->
timestamp
!=
*
timestamp
)
{
data
->
timestamp
!=
*
timestamp
)
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Invalid packet received
\n
"
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Invalid packet received
\n
"
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
@@ -115,7 +106,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -115,7 +106,7 @@ static int ac3_handle_packet(AVFormatContext *ctx, PayloadContext *data,
return
AVERROR
(
EAGAIN
);
return
AVERROR
(
EAGAIN
);
if
(
data
->
last_frame
!=
data
->
nr_frames
)
{
if
(
data
->
last_frame
!=
data
->
nr_frames
)
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Missed %d packets
\n
"
,
av_log
(
ctx
,
AV_LOG_ERROR
,
"Missed %d packets
\n
"
,
data
->
nr_frames
-
data
->
last_frame
);
data
->
nr_frames
-
data
->
last_frame
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
...
...
libavformat/rtpdec_asf.c
View file @
199fb402
...
@@ -213,10 +213,7 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
...
@@ -213,10 +213,7 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
* multiple RTP packets.
* multiple RTP packets.
*/
*/
if
(
asf
->
pktbuf
&&
len_off
!=
avio_tell
(
asf
->
pktbuf
))
{
if
(
asf
->
pktbuf
&&
len_off
!=
avio_tell
(
asf
->
pktbuf
))
{
uint8_t
*
p
;
ffio_free_dyn_buf
(
&
asf
->
pktbuf
);
avio_close_dyn_buf
(
asf
->
pktbuf
,
&
p
);
asf
->
pktbuf
=
NULL
;
av_free
(
p
);
}
}
if
(
!
len_off
&&
!
asf
->
pktbuf
&&
if
(
!
len_off
&&
!
asf
->
pktbuf
&&
(
res
=
avio_open_dyn_buf
(
&
asf
->
pktbuf
))
<
0
)
(
res
=
avio_open_dyn_buf
(
&
asf
->
pktbuf
))
<
0
)
...
@@ -279,12 +276,7 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
...
@@ -279,12 +276,7 @@ static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
static
void
asfrtp_free_context
(
PayloadContext
*
asf
)
static
void
asfrtp_free_context
(
PayloadContext
*
asf
)
{
{
if
(
asf
->
pktbuf
)
{
ffio_free_dyn_buf
(
&
asf
->
pktbuf
);
uint8_t
*
p
=
NULL
;
avio_close_dyn_buf
(
asf
->
pktbuf
,
&
p
);
asf
->
pktbuf
=
NULL
;
av_free
(
p
);
}
av_freep
(
&
asf
->
buf
);
av_freep
(
&
asf
->
buf
);
av_free
(
asf
);
av_free
(
asf
);
}
}
...
...
libavformat/rtpdec_dv.c
View file @
199fb402
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include "libavcodec/bytestream.h"
#include "libavcodec/bytestream.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
struct
PayloadContext
{
struct
PayloadContext
{
...
@@ -31,17 +32,9 @@ struct PayloadContext {
...
@@ -31,17 +32,9 @@ struct PayloadContext {
int
bundled_audio
;
int
bundled_audio
;
};
};
static
void
dv_free_dyn_buffer
(
AVIOContext
**
dyn_buf
)
{
uint8_t
*
ptr_dyn_buffer
;
avio_close_dyn_buf
(
*
dyn_buf
,
&
ptr_dyn_buffer
);
av_free
(
ptr_dyn_buffer
);
*
dyn_buf
=
NULL
;
}
static
av_cold
void
dv_free_context
(
PayloadContext
*
data
)
static
av_cold
void
dv_free_context
(
PayloadContext
*
data
)
{
{
dv_free_dyn_buffer
(
&
data
->
buf
);
ffio_free_dyn_buf
(
&
data
->
buf
);
}
}
static
av_cold
int
dv_sdp_parse_fmtp_config
(
AVFormatContext
*
s
,
static
av_cold
int
dv_sdp_parse_fmtp_config
(
AVFormatContext
*
s
,
...
@@ -104,7 +97,7 @@ static int dv_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_dv_ctx,
...
@@ -104,7 +97,7 @@ static int dv_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_dv_ctx,
/* drop data of previous packets in case of non-continuous (lossy) packet stream */
/* drop data of previous packets in case of non-continuous (lossy) packet stream */
if
(
rtp_dv_ctx
->
buf
&&
rtp_dv_ctx
->
timestamp
!=
*
timestamp
)
{
if
(
rtp_dv_ctx
->
buf
&&
rtp_dv_ctx
->
timestamp
!=
*
timestamp
)
{
dv_free_dyn_buffer
(
&
rtp_dv_ctx
->
buf
);
ffio_free_dyn_buf
(
&
rtp_dv_ctx
->
buf
);
}
}
/* sanity check for size of input packet: 1 byte payload at least */
/* sanity check for size of input packet: 1 byte payload at least */
...
...
libavformat/rtpdec_h261.c
View file @
199fb402
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include "libavcodec/get_bits.h"
#include "libavcodec/get_bits.h"
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
#define RTP_H261_PAYLOAD_HEADER_SIZE 4
#define RTP_H261_PAYLOAD_HEADER_SIZE 4
...
@@ -32,14 +33,6 @@ struct PayloadContext {
...
@@ -32,14 +33,6 @@ struct PayloadContext {
uint32_t
timestamp
;
uint32_t
timestamp
;
};
};
static
void
h261_free_dyn_buffer
(
AVIOContext
**
dyn_buf
)
{
uint8_t
*
ptr_dyn_buffer
;
avio_close_dyn_buf
(
*
dyn_buf
,
&
ptr_dyn_buffer
);
av_free
(
ptr_dyn_buffer
);
*
dyn_buf
=
NULL
;
}
static
av_cold
void
h261_free_context
(
PayloadContext
*
pl_ctx
)
static
av_cold
void
h261_free_context
(
PayloadContext
*
pl_ctx
)
{
{
/* return if context is invalid */
/* return if context is invalid */
...
@@ -47,9 +40,7 @@ static av_cold void h261_free_context(PayloadContext *pl_ctx)
...
@@ -47,9 +40,7 @@ static av_cold void h261_free_context(PayloadContext *pl_ctx)
return
;
return
;
/* free buffer if it is valid */
/* free buffer if it is valid */
if
(
pl_ctx
->
buf
)
{
ffio_free_dyn_buf
(
&
pl_ctx
->
buf
);
h261_free_dyn_buffer
(
&
pl_ctx
->
buf
);
}
}
}
static
int
h261_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
rtp_h261_ctx
,
static
int
h261_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
rtp_h261_ctx
,
...
@@ -62,7 +53,7 @@ static int h261_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_h261_ctx
...
@@ -62,7 +53,7 @@ static int h261_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_h261_ctx
/* drop data of previous packets in case of non-continuous (lossy) packet stream */
/* drop data of previous packets in case of non-continuous (lossy) packet stream */
if
(
rtp_h261_ctx
->
buf
&&
rtp_h261_ctx
->
timestamp
!=
*
timestamp
)
{
if
(
rtp_h261_ctx
->
buf
&&
rtp_h261_ctx
->
timestamp
!=
*
timestamp
)
{
h261_free_dyn_buffer
(
&
rtp_h261_ctx
->
buf
);
ffio_free_dyn_buf
(
&
rtp_h261_ctx
->
buf
);
rtp_h261_ctx
->
endbyte_bits
=
0
;
rtp_h261_ctx
->
endbyte_bits
=
0
;
}
}
...
...
libavformat/rtpdec_h263_rfc2190.c
View file @
199fb402
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
*/
*/
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
...
@@ -41,11 +42,7 @@ struct PayloadContext {
...
@@ -41,11 +42,7 @@ struct PayloadContext {
static
void
h263_free_context
(
PayloadContext
*
data
)
static
void
h263_free_context
(
PayloadContext
*
data
)
{
{
if
(
data
->
buf
)
{
ffio_free_dyn_buf
(
&
data
->
buf
);
uint8_t
*
p
;
avio_close_dyn_buf
(
data
->
buf
,
&
p
);
av_free
(
p
);
}
}
}
static
int
h263_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
static
int
h263_handle_packet
(
AVFormatContext
*
ctx
,
PayloadContext
*
data
,
...
@@ -63,10 +60,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -63,10 +60,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
if
(
data
->
buf
&&
data
->
timestamp
!=
*
timestamp
)
{
if
(
data
->
buf
&&
data
->
timestamp
!=
*
timestamp
)
{
/* Dropping old buffered, unfinished data */
/* Dropping old buffered, unfinished data */
uint8_t
*
p
;
ffio_free_dyn_buf
(
&
data
->
buf
);
avio_close_dyn_buf
(
data
->
buf
,
&
p
);
av_free
(
p
);
data
->
buf
=
NULL
;
data
->
endbyte_bits
=
0
;
data
->
endbyte_bits
=
0
;
}
}
...
...
libavformat/rtpdec_jpeg.c
View file @
199fb402
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
*/
*/
#include "avformat.h"
#include "avformat.h"
#include "avio_internal.h"
#include "rtpdec.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
...
@@ -59,19 +60,9 @@ static const uint8_t default_quantizers[128] = {
...
@@ -59,19 +60,9 @@ static const uint8_t default_quantizers[128] = {
99
,
99
,
99
,
99
,
99
,
99
,
99
,
99
99
,
99
,
99
,
99
,
99
,
99
,
99
,
99
};
};
static
void
free_frame
(
PayloadContext
*
jpeg
)
{
if
(
jpeg
->
frame
)
{
uint8_t
*
p
;
avio_close_dyn_buf
(
jpeg
->
frame
,
&
p
);
av_free
(
p
);
jpeg
->
frame
=
NULL
;
}
}
static
void
jpeg_free_context
(
PayloadContext
*
jpeg
)
static
void
jpeg_free_context
(
PayloadContext
*
jpeg
)
{
{
f
ree_frame
(
jpeg
);
f
fio_free_dyn_buf
(
&
jpeg
->
frame
);
}
}
static
int
jpeg_create_huffman_table
(
PutByteContext
*
p
,
int
table_class
,
static
int
jpeg_create_huffman_table
(
PutByteContext
*
p
,
int
table_class
,
...
@@ -315,7 +306,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
...
@@ -315,7 +306,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
/* Skip the current frame in case of the end packet
/* Skip the current frame in case of the end packet
* has been lost somewhere. */
* has been lost somewhere. */
f
ree_frame
(
jpeg
);
f
fio_free_dyn_buf
(
&
jpeg
->
frame
);
if
((
ret
=
avio_open_dyn_buf
(
&
jpeg
->
frame
))
<
0
)
if
((
ret
=
avio_open_dyn_buf
(
&
jpeg
->
frame
))
<
0
)
return
ret
;
return
ret
;
...
@@ -341,7 +332,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
...
@@ -341,7 +332,7 @@ static int jpeg_parse_packet(AVFormatContext *ctx, PayloadContext *jpeg,
if
(
jpeg
->
timestamp
!=
*
timestamp
)
{
if
(
jpeg
->
timestamp
!=
*
timestamp
)
{
/* Skip the current frame if timestamp is incorrect.
/* Skip the current frame if timestamp is incorrect.
* A start packet has been lost somewhere. */
* A start packet has been lost somewhere. */
f
ree_frame
(
jpeg
);
f
fio_free_dyn_buf
(
&
jpeg
->
frame
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"RTP timestamps don't match.
\n
"
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"RTP timestamps don't match.
\n
"
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
...
libavformat/rtpdec_latm.c
View file @
199fb402
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
#include "internal.h"
#include "internal.h"
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
...
@@ -33,11 +34,7 @@ struct PayloadContext {
...
@@ -33,11 +34,7 @@ struct PayloadContext {
static
void
latm_free_context
(
PayloadContext
*
data
)
static
void
latm_free_context
(
PayloadContext
*
data
)
{
{
if
(
data
->
dyn_buf
)
{
ffio_free_dyn_buf
(
&
data
->
dyn_buf
);
uint8_t
*
p
;
avio_close_dyn_buf
(
data
->
dyn_buf
,
&
p
);
av_free
(
p
);
}
av_free
(
data
->
buf
);
av_free
(
data
->
buf
);
}
}
...
@@ -51,10 +48,7 @@ static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -51,10 +48,7 @@ static int latm_parse_packet(AVFormatContext *ctx, PayloadContext *data,
if
(
buf
)
{
if
(
buf
)
{
if
(
!
data
->
dyn_buf
||
data
->
timestamp
!=
*
timestamp
)
{
if
(
!
data
->
dyn_buf
||
data
->
timestamp
!=
*
timestamp
)
{
av_freep
(
&
data
->
buf
);
av_freep
(
&
data
->
buf
);
if
(
data
->
dyn_buf
)
ffio_free_dyn_buf
(
&
data
->
dyn_buf
);
avio_close_dyn_buf
(
data
->
dyn_buf
,
&
data
->
buf
);
data
->
dyn_buf
=
NULL
;
av_freep
(
&
data
->
buf
);
data
->
timestamp
=
*
timestamp
;
data
->
timestamp
=
*
timestamp
;
if
((
ret
=
avio_open_dyn_buf
(
&
data
->
dyn_buf
))
<
0
)
if
((
ret
=
avio_open_dyn_buf
(
&
data
->
dyn_buf
))
<
0
)
...
...
libavformat/rtpdec_mpa_robust.c
View file @
199fb402
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include "libavutil/attributes.h"
#include "libavutil/attributes.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
struct
PayloadContext
{
struct
PayloadContext
{
...
@@ -33,19 +34,9 @@ struct PayloadContext {
...
@@ -33,19 +34,9 @@ struct PayloadContext {
AVIOContext
*
fragment
;
AVIOContext
*
fragment
;
};
};
static
void
free_fragment
(
PayloadContext
*
data
)
{
if
(
data
->
fragment
)
{
uint8_t
*
p
;
avio_close_dyn_buf
(
data
->
fragment
,
&
p
);
av_free
(
p
);
data
->
fragment
=
NULL
;
}
}
static
void
mpa_robust_free_context
(
PayloadContext
*
data
)
static
void
mpa_robust_free_context
(
PayloadContext
*
data
)
{
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_free
(
data
->
split_buf
);
av_free
(
data
->
split_buf
);
}
}
...
@@ -154,7 +145,7 @@ static int mpa_robust_parse_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -154,7 +145,7 @@ static int mpa_robust_parse_packet(AVFormatContext *ctx, PayloadContext *data,
return
0
;
return
0
;
}
else
if
(
!
continuation
)
{
/* && adu_size > len */
}
else
if
(
!
continuation
)
{
/* && adu_size > len */
/* First fragment */
/* First fragment */
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
data
->
adu_size
=
adu_size
;
data
->
adu_size
=
adu_size
;
data
->
cur_size
=
len
;
data
->
cur_size
=
len
;
...
@@ -177,7 +168,7 @@ static int mpa_robust_parse_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -177,7 +168,7 @@ static int mpa_robust_parse_packet(AVFormatContext *ctx, PayloadContext *data,
}
}
if
(
adu_size
=
data
->
adu_size
||
if
(
adu_size
=
data
->
adu_size
||
data
->
timestamp
!=
*
timestamp
)
{
data
->
timestamp
!=
*
timestamp
)
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Invalid packet received
\n
"
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"Invalid packet received
\n
"
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
...
libavformat/rtpdec_svq3.c
View file @
199fb402
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include <string.h>
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/intreadwrite.h"
#include "avio_internal.h"
#include "rtp.h"
#include "rtp.h"
#include "rtpdec.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
...
@@ -82,11 +83,7 @@ static int svq3_parse_packet (AVFormatContext *s, PayloadContext *sv,
...
@@ -82,11 +83,7 @@ static int svq3_parse_packet (AVFormatContext *s, PayloadContext *sv,
if
(
start_packet
)
{
if
(
start_packet
)
{
int
res
;
int
res
;
if
(
sv
->
pktbuf
)
{
ffio_free_dyn_buf
(
&
sv
->
pktbuf
);
uint8_t
*
tmp
;
avio_close_dyn_buf
(
sv
->
pktbuf
,
&
tmp
);
av_free
(
tmp
);
}
if
((
res
=
avio_open_dyn_buf
(
&
sv
->
pktbuf
))
<
0
)
if
((
res
=
avio_open_dyn_buf
(
&
sv
->
pktbuf
))
<
0
)
return
res
;
return
res
;
sv
->
timestamp
=
*
timestamp
;
sv
->
timestamp
=
*
timestamp
;
...
@@ -111,11 +108,7 @@ static int svq3_parse_packet (AVFormatContext *s, PayloadContext *sv,
...
@@ -111,11 +108,7 @@ static int svq3_parse_packet (AVFormatContext *s, PayloadContext *sv,
static
void
svq3_extradata_free
(
PayloadContext
*
sv
)
static
void
svq3_extradata_free
(
PayloadContext
*
sv
)
{
{
if
(
sv
->
pktbuf
)
{
ffio_free_dyn_buf
(
&
sv
->
pktbuf
);
uint8_t
*
buf
;
avio_close_dyn_buf
(
sv
->
pktbuf
,
&
buf
);
av_free
(
buf
);
}
}
}
RTPDynamicProtocolHandler
ff_svq3_dynamic_handler
=
{
RTPDynamicProtocolHandler
ff_svq3_dynamic_handler
=
{
...
...
libavformat/rtpdec_vp8.c
View file @
199fb402
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "libavcodec/bytestream.h"
#include "libavcodec/bytestream.h"
#include "avio_internal.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
struct
PayloadContext
{
struct
PayloadContext
{
...
@@ -52,22 +53,12 @@ struct PayloadContext {
...
@@ -52,22 +53,12 @@ struct PayloadContext {
int
got_keyframe
;
int
got_keyframe
;
};
};
static
void
vp8_free_buffer
(
PayloadContext
*
vp8
)
{
uint8_t
*
tmp
;
if
(
!
vp8
->
data
)
return
;
avio_close_dyn_buf
(
vp8
->
data
,
&
tmp
);
av_free
(
tmp
);
vp8
->
data
=
NULL
;
}
static
int
vp8_broken_sequence
(
AVFormatContext
*
ctx
,
PayloadContext
*
vp8
,
static
int
vp8_broken_sequence
(
AVFormatContext
*
ctx
,
PayloadContext
*
vp8
,
const
char
*
msg
)
const
char
*
msg
)
{
{
vp8
->
sequence_ok
=
0
;
vp8
->
sequence_ok
=
0
;
av_log
(
ctx
,
AV_LOG_WARNING
,
"%s"
,
msg
);
av_log
(
ctx
,
AV_LOG_WARNING
,
"%s"
,
msg
);
vp8_free_buffer
(
vp8
);
ffio_free_dyn_buf
(
&
vp8
->
data
);
return
AVERROR
(
EAGAIN
);
return
AVERROR
(
EAGAIN
);
}
}
...
@@ -150,7 +141,7 @@ static int vp8_handle_packet(AVFormatContext *ctx, PayloadContext *vp8,
...
@@ -150,7 +141,7 @@ static int vp8_handle_packet(AVFormatContext *ctx, PayloadContext *vp8,
int
res
;
int
res
;
int
non_key
=
buf
[
0
]
&
0x01
;
int
non_key
=
buf
[
0
]
&
0x01
;
if
(
!
non_key
)
{
if
(
!
non_key
)
{
vp8_free_buffer
(
vp8
);
ffio_free_dyn_buf
(
&
vp8
->
data
);
// Keyframe, decoding ok again
// Keyframe, decoding ok again
vp8
->
sequence_ok
=
1
;
vp8
->
sequence_ok
=
1
;
vp8
->
sequence_dirty
=
0
;
vp8
->
sequence_dirty
=
0
;
...
@@ -205,7 +196,7 @@ static int vp8_handle_packet(AVFormatContext *ctx, PayloadContext *vp8,
...
@@ -205,7 +196,7 @@ static int vp8_handle_packet(AVFormatContext *ctx, PayloadContext *vp8,
old_timestamp
=
vp8
->
timestamp
;
old_timestamp
=
vp8
->
timestamp
;
}
else
{
}
else
{
// Shouldn't happen
// Shouldn't happen
vp8_free_buffer
(
vp8
);
ffio_free_dyn_buf
(
&
vp8
->
data
);
}
}
}
}
}
}
...
@@ -277,7 +268,7 @@ static av_cold int vp8_init(AVFormatContext *s, int st_index, PayloadContext *vp
...
@@ -277,7 +268,7 @@ static av_cold int vp8_init(AVFormatContext *s, int st_index, PayloadContext *vp
static
void
vp8_free_context
(
PayloadContext
*
vp8
)
static
void
vp8_free_context
(
PayloadContext
*
vp8
)
{
{
vp8_free_buffer
(
vp8
);
ffio_free_dyn_buf
(
&
vp8
->
data
);
}
}
static
int
vp8_need_keyframe
(
PayloadContext
*
vp8
)
static
int
vp8_need_keyframe
(
PayloadContext
*
vp8
)
...
...
libavformat/rtpdec_xiph.c
View file @
199fb402
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#include <assert.h>
#include <assert.h>
#include "avio_internal.h"
#include "rtpdec.h"
#include "rtpdec.h"
#include "rtpdec_formats.h"
#include "rtpdec_formats.h"
...
@@ -49,19 +50,9 @@ struct PayloadContext {
...
@@ -49,19 +50,9 @@ struct PayloadContext {
int
split_pkts
;
int
split_pkts
;
};
};
static
void
free_fragment
(
PayloadContext
*
data
)
{
if
(
data
->
fragment
)
{
uint8_t
*
p
;
avio_close_dyn_buf
(
data
->
fragment
,
&
p
);
av_free
(
p
);
data
->
fragment
=
NULL
;
}
}
static
void
xiph_free_context
(
PayloadContext
*
data
)
static
void
xiph_free_context
(
PayloadContext
*
data
)
{
{
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_free
(
data
->
split_buf
);
av_free
(
data
->
split_buf
);
}
}
...
@@ -168,7 +159,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -168,7 +159,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
int
res
;
int
res
;
// end packet has been lost somewhere, so drop buffered data
// end packet has been lost somewhere, so drop buffered data
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
if
((
res
=
avio_open_dyn_buf
(
&
data
->
fragment
))
<
0
)
if
((
res
=
avio_open_dyn_buf
(
&
data
->
fragment
))
<
0
)
return
res
;
return
res
;
...
@@ -181,7 +172,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
...
@@ -181,7 +172,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
if
(
data
->
timestamp
!=
*
timestamp
)
{
if
(
data
->
timestamp
!=
*
timestamp
)
{
// skip if fragmented timestamp is incorrect;
// skip if fragmented timestamp is incorrect;
// a start packet has been lost somewhere
// a start packet has been lost somewhere
f
ree_fragment
(
data
);
f
fio_free_dyn_buf
(
&
data
->
fragment
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"RTP timestamps don't match!
\n
"
);
av_log
(
ctx
,
AV_LOG_ERROR
,
"RTP timestamps don't match!
\n
"
);
return
AVERROR_INVALIDDATA
;
return
AVERROR_INVALIDDATA
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment