mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-05 01:56:41 +00:00
Merge commit '12251f997bbc0abb93be39c51021e6d404ca385f'
* commit '12251f997bbc0abb93be39c51021e6d404ca385f': rtpdec: Remove unnecessary checks Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
1c5d9dd2b7
@ -41,8 +41,6 @@ struct PayloadContext {
|
||||
|
||||
static void h263_free_context(PayloadContext *data)
|
||||
{
|
||||
if (!data)
|
||||
return;
|
||||
if (data->buf) {
|
||||
uint8_t *p;
|
||||
avio_close_dyn_buf(data->buf, &p);
|
||||
|
@ -33,8 +33,6 @@ struct PayloadContext {
|
||||
|
||||
static void latm_free_context(PayloadContext *data)
|
||||
{
|
||||
if (!data)
|
||||
return;
|
||||
if (data->dyn_buf) {
|
||||
uint8_t *p;
|
||||
avio_close_dyn_buf(data->dyn_buf, &p);
|
||||
|
Loading…
Reference in New Issue
Block a user