mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/rtpdec_rfc4175: Remove redundant initialization
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
f7823c9a3a
commit
5724e8a664
@ -42,8 +42,8 @@ struct PayloadContext {
|
||||
|
||||
static int rfc4175_parse_format(AVStream *stream, PayloadContext *data)
|
||||
{
|
||||
enum AVPixelFormat pixfmt = AV_PIX_FMT_NONE;
|
||||
int tag = 0;
|
||||
enum AVPixelFormat pixfmt;
|
||||
int tag;
|
||||
const AVPixFmtDescriptor *desc;
|
||||
|
||||
if (!strncmp(data->sampling, "YCbCr-4:2:2", 11)) {
|
||||
|
Loading…
Reference in New Issue
Block a user