Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-11-01 20:31:18 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-11-01 20:33:05 +0400
commitb594aceb9482955fc5fadad51e25219cb29d4a1b (patch)
treed9b7ba15d3c2d80d16128d6e24748c5892b1c0f4 /libavformat/hevcdec.c
parent3552bd93185a1f9be8733a17104f462cd7d7a9a7 (diff)
parent5846646296e377e093441dfe9eadde38ff1f7c99 (diff)
Merge commit '5846646296e377e093441dfe9eadde38ff1f7c99'
* commit '5846646296e377e093441dfe9eadde38ff1f7c99': Add raw HEVC demuxer Conflicts: Changelog libavformat/hevcdec.c libavformat/version.h See: 902a5fa7228d92bf7e0a8f523a25cf72d31afab4 and later commits Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/hevcdec.c')
-rw-r--r--libavformat/hevcdec.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavformat/hevcdec.c b/libavformat/hevcdec.c
index 88abcc6ab2..e36a0513e3 100644
--- a/libavformat/hevcdec.c
+++ b/libavformat/hevcdec.c
@@ -19,11 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include "libavcodec/hevc.h"
+
#include "avformat.h"
#include "rawdec.h"
-#include "libavcodec/hevc.h"
-
static int hevc_probe(AVProbeData *p)
{
uint32_t code = -1;
@@ -56,8 +56,6 @@ static int hevc_probe(AVProbeData *p)
}
}
- // printf("vps=%d, sps=%d, pps=%d, irap=%d\n", vps, sps, pps, irap);
-
if (vps && sps && pps && irap)
return AVPROBE_SCORE_EXTENSION + 1; // 1 more than .mpg
return 0;