Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- qty:jni qrtt1$ git show
- commit 1a3edca042cc735ba0b3bbad859f90497c90bdb1
- Author: Ching Yi, Chan <[email protected]>
- Date: Fri Jun 15 13:08:05 2012 +0800
- http seek disable only for http:// prefix
- diff --git a/jni/mp4remuxer.jni.c b/jni/mp4remuxer.jni.c
- index c1e8809..d3adad1 100644
- --- a/jni/mp4remuxer.jni.c
- +++ b/jni/mp4remuxer.jni.c
- @@ -59,7 +59,7 @@ JNIEXPORT jboolean JNICALL Java_net_muzee_vplayer_remuxer_MP4Remuxer_beginTransR
- info_remuxer("disabke http-seek: %d", disable_http_seek);
- ctx.need_transcode_audio = enable_aac == JNI_TRUE ? 1 : 0;
- - if(disable_http_seek && strstr(media, "://") != NULL)
- + if(disable_http_seek && strstr(media, "http://") != NULL)
- {
- strcpy(media_without_seek, "http,+seek+0++");
- strcat(media_without_seek, strstr(media, "://"));
Advertisement
Add Comment
Please, Sign In to add comment