Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
67351924
Commit
67351924
authored
Mar 12, 2015
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop unreachable break and return statements
parent
99434f4d
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
0 additions
and
12 deletions
+0
-12
bmvvideo.c
libavcodec/bmvvideo.c
+0
-1
hevc_sei.c
libavcodec/hevc_sei.c
+0
-1
indeo3.c
libavcodec/indeo3.c
+0
-2
sanm.c
libavcodec/sanm.c
+0
-3
rtpproto.c
libavformat/rtpproto.c
+0
-1
rtspdec.c
libavformat/rtspdec.c
+0
-1
smush.c
libavformat/smush.c
+0
-1
opt.c
libavutil/opt.c
+0
-2
No files found.
libavcodec/bmvvideo.c
View file @
67351924
...
...
@@ -191,7 +191,6 @@ static int decode_bmv_frame(const uint8_t *source, int src_len, uint8_t *frame,
if
(
dst
==
dst_end
)
return
0
;
}
return
0
;
}
static
int
decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
got_frame
,
...
...
libavcodec/hevc_sei.c
View file @
67351924
...
...
@@ -173,7 +173,6 @@ static int decode_nal_sei_message(HEVCContext *s)
}
else
{
/* nal_unit_type == NAL_SEI_SUFFIX */
return
decode_nal_sei_suffix
(
s
,
payload_type
,
payload_size
);
}
return
0
;
}
static
int
more_rbsp_data
(
GetBitContext
*
gb
)
...
...
libavcodec/indeo3.c
View file @
67351924
...
...
@@ -831,8 +831,6 @@ static int parse_bintree(Indeo3DecodeContext *ctx, AVCodecContext *avctx,
break
;
}
}
//while
return
0
;
}
...
...
libavcodec/sanm.c
View file @
67351924
...
...
@@ -926,13 +926,10 @@ static int process_frame_obj(SANMVideoContext *ctx)
case
1
:
case
3
:
return
old_codec1
(
ctx
,
top
,
left
,
w
,
h
);
break
;
case
37
:
return
old_codec37
(
ctx
,
top
,
left
,
w
,
h
);
break
;
case
47
:
return
old_codec47
(
ctx
,
top
,
left
,
w
,
h
);
break
;
default:
avpriv_request_sample
(
ctx
->
avctx
,
"Subcodec %d"
,
codec
);
return
AVERROR_PATCHWELCOME
;
...
...
libavformat/rtpproto.c
View file @
67351924
...
...
@@ -436,7 +436,6 @@ static int rtp_read(URLContext *h, uint8_t *buf, int size)
if
(
h
->
flags
&
AVIO_FLAG_NONBLOCK
)
return
AVERROR
(
EAGAIN
);
}
return
len
;
}
static
int
rtp_write
(
URLContext
*
h
,
const
uint8_t
*
buf
,
int
size
)
...
...
libavformat/rtspdec.c
View file @
67351924
...
...
@@ -700,7 +700,6 @@ static int rtsp_listen(AVFormatContext *s)
return
AVERROR_INVALIDDATA
;
}
}
return
0
;
}
static
int
rtsp_probe
(
AVProbeData
*
p
)
...
...
libavformat/smush.c
View file @
67351924
...
...
@@ -129,7 +129,6 @@ static int smush_read_header(AVFormatContext *ctx)
break
;
default:
return
AVERROR_INVALIDDATA
;
break
;
}
}
...
...
libavutil/opt.c
View file @
67351924
...
...
@@ -240,8 +240,6 @@ static int set_string_number(void *obj, void *target_obj, const AVOption *o, con
return
0
;
notfirst
=
1
;
}
return
0
;
}
int
av_opt_set
(
void
*
obj
,
const
char
*
name
,
const
char
*
val
,
int
search_flags
)
...
...
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