#include #include #include #include #include const size_t BUFF_SIZE = 4096; struct Muxer { JavaVM* jvm; jobject thiz; jmethodID write_packet_method_id; jmethodID seek_method_id; }; int write_packet(void* opaque, uint8_t* buff, int buff_size) { struct Muxer* muxer = opaque; JNIEnv *env; (*muxer->jvm)->GetEnv(muxer->jvm, (void **) &env, JNI_VERSION_1_6); jbyteArray jarray = (*env)->NewByteArray(env, buff_size); (*env)->SetByteArrayRegion(env, jarray, 0, buff_size, buff); (*env)->CallVoidMethod(env, muxer->thiz, muxer->write_packet_method_id, jarray, buff_size); return buff_size; } int64_t seek(void* opaque, int64_t offset, int whence) { struct Muxer* muxer = opaque; JNIEnv *env; (*muxer->jvm)->GetEnv(muxer->jvm, (void **) &env, JNI_VERSION_1_6); (*env)->CallVoidMethod(env, muxer->thiz, muxer->seek_method_id, offset); return offset; } jlong Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_allocContext(JNIEnv *env, jobject thiz) { const AVOutputFormat *format = av_guess_format("mp4", NULL, NULL); struct Muxer* muxer = malloc(sizeof(struct Muxer)); (*env)->GetJavaVM(env, &muxer->jvm); muxer->thiz = (*env)->NewGlobalRef(env, thiz); jclass class = (*env)->GetObjectClass(env, thiz); muxer->write_packet_method_id = (*env)->GetMethodID(env, class, "writePacket", "([B)V"); muxer->seek_method_id = (*env)->GetMethodID(env, class, "seek", "(J)V"); AVIOContext* avio_context = avio_alloc_context(av_malloc(BUFF_SIZE), BUFF_SIZE, 1, muxer, NULL, write_packet, seek); AVFormatContext* fc = avformat_alloc_context(); fc->oformat = format; fc->pb = avio_context; return (jlong) fc; } JNIEXPORT jint JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_addAudioTrack(JNIEnv *env, jobject thiz, jlong format_context, jint bitrate, jint sample_rate, jint channel_count) { const AVCodec* encoder = avcodec_find_encoder(AV_CODEC_ID_AAC); AVStream* stream = avformat_new_stream((AVFormatContext *) format_context, NULL); AVCodecContext* codec_context = avcodec_alloc_context3(encoder); codec_context->channels = channel_count; codec_context->channel_layout = av_get_default_channel_layout(channel_count); codec_context->sample_rate = sample_rate; codec_context->sample_fmt = encoder->sample_fmts[0]; codec_context->bit_rate = bitrate; codec_context->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL; stream->time_base.den = sample_rate; stream->time_base.num = 1; codec_context->flags = AV_CODEC_FLAG_GLOBAL_HEADER; avcodec_open2(codec_context, encoder, NULL); avcodec_parameters_from_context(stream->codecpar, codec_context); int frame_size = codec_context->frame_size; avcodec_free_context(&codec_context); return frame_size; } JNIEXPORT jint JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_addVideoTrack(JNIEnv *env, jobject thiz, jlong format_context, jint bitrate, jint width, jint height, jint orientation_hint) { AVStream* stream = avformat_new_stream((AVFormatContext *) format_context, NULL); stream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO; stream->codecpar->codec_id = AV_CODEC_ID_H264; stream->codecpar->bit_rate = bitrate; stream->codecpar->width = width; stream->codecpar->height = height; uint8_t* matrix = av_stream_new_side_data(stream, AV_PKT_DATA_DISPLAYMATRIX, sizeof(int32_t) * 9); av_display_rotation_set((int32_t *) matrix, orientation_hint); return stream->index; } JNIEXPORT jint JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_writeHeaders(JNIEnv *env, jobject thiz, jlong format_context) { return avformat_write_header((AVFormatContext *) format_context, NULL); } JNIEXPORT void JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_writePacket(JNIEnv *env, jobject thiz, jlong format_context, jbyteArray buffer, jlong pts, jint stream_index, jboolean is_key_frame) { AVPacket* packet = av_packet_alloc(); int size = (*env)->GetArrayLength(env, buffer); av_new_packet(packet, size); packet->pts = pts; if (stream_index >= 0) { //video packet->stream_index = stream_index; AVRational r; r.num = 1; r.den = 1000000; av_packet_rescale_ts(packet, r, ((AVFormatContext *)format_context)->streams[stream_index]->time_base); } unsigned char* buff = malloc(size); (*env)->GetByteArrayRegion(env, buffer, 0, size, buff); packet->data = buff; if (is_key_frame) { packet->flags = AV_PKT_FLAG_KEY; } av_write_frame((AVFormatContext *)format_context, packet); free(buff); av_packet_free(&packet); } JNIEXPORT void JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_writeTrailer(JNIEnv *env, jobject thiz, jlong format_context) { av_write_trailer((AVFormatContext *) format_context); } JNIEXPORT void JNICALL Java_sushi_hardcore_droidfs_video_1recording_MediaMuxer_release(JNIEnv *env, jobject thiz, jlong format_context) { AVFormatContext* fc = (AVFormatContext *) format_context; av_free(fc->pb->buffer); free(fc->pb->opaque); avio_context_free(&fc->pb); avformat_free_context(fc); }