diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-28 13:23:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-28 13:23:54 +0200 |
commit | 2655c1ac1282bbcfd7666e42aaf73014598faad5 (patch) | |
tree | fc058c209497d6bcf86cb64d649cc4053926dc70 /libavformat | |
parent | 3afcddcff2bc55b165bb49a0758883c633296a02 (diff) | |
parent | 6ff15cd569e1345bc3612fb69ad3003b104fe50d (diff) | |
download | ffmpeg-2655c1ac1282bbcfd7666e42aaf73014598faad5.tar.gz |
Merge commit '6ff15cd569e1345bc3612fb69ad3003b104fe50d'
* commit '6ff15cd569e1345bc3612fb69ad3003b104fe50d':
Remove unreachable returns
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nutenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 1947e32abf..9b7f41af8d 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -91,7 +91,7 @@ static int find_expected_header(AVCodecContext *c, int size, int key_frame, header |= (bitrate_index & 1) << 9; return 2; //FIXME actually put the needed ones in build_elision_headers() - return 3; //we guess that the private bit is not set + //return 3; //we guess that the private bit is not set //FIXME the above assumptions should be checked, if these turn out false too often something should be done } return 0; |