- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我尝试使用互联网上提供的示例示例中的 FFMpeg 库解码视频,我使用新版本的 ffmpeg 解决了这个问题,这是我从类文件中调用的代码,
private static native int decodeVideo(String filename);
decodeVideo(getString(R.string._sdcard_abc_3gp));
现在在位于 JNI 目录的 .c 文件中,我编写了这段代码,
jint Java_ru_dzakhov_ffmpeg_test_MainActivity_decodeVideo(JNIEnv* env, jobject
javaThis,jstring filename) {
AVFormatContext *pFormatCtx;
int i, videoStream;
AVCodecContext *pCodecCtx;
AVCodec *pCodec;
AVFrame *pFrame;
AVFrame *pFrameRGB;
AVPacket packet;
int frameFinished;
int numBytes;
uint8_t *buffer;
// Register all formats and codecs
av_register_all();
// Open video file
const jbyte *str;
str = (*env)->GetStringUTFChars(env, filename, NULL);
if(av_open_input_file(&pFormatCtx, str, NULL, 0, NULL)!=0)
{
LOGI("Can't open file '%s'\n", str);
return 1;
}
else
{
LOGI("File is opened\n");
LOGI("File '%s', Codec %s",pFormatCtx->filename,pFormatCtx->iformat->name);
}
// Dump information about file onto standard error
LOGI("dump_format");
dump_format(pFormatCtx, 0, filename, 0);
LOGI("dump_format DONE");
// Find the first video stream
videoStream=-1;
for(i=0; i<pFormatCtx->nb_streams; i++)
if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO)
//if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO)
{
LOGI("videoStream:: %d",videoStream);
videoStream=i;
break;
}
if(videoStream==-1)
return -1; // Didn't find a video stream
// Get a pointer to the codec context for the video stream
pCodecCtx=pFormatCtx->streams[videoStream]->codec;
// Find the decoder for the video stream
pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
if(pCodec==NULL) {
fprintf(stderr, "Unsupported codec!\n");
LOGI("Unsupported codec!\n");
return -1; // Codec not found
}
// Open codec
if(avcodec_open(pCodecCtx, pCodec)<0){
LOGI("Codec Opened!\n");
return -1; // Could not open codec
}
// Allocate video frame
pFrame=avcodec_alloc_frame();
// Allocate an AVFrame structure
pFrameRGB=avcodec_alloc_frame();
if(pFrameRGB==NULL){
LOGI("checking --->>> pFrameRGB==NULL\n");
return -1;
}
// Determine required buffer size and allocate buffer
LOGI("Determine required buffer size and allocate buffer\n");
numBytes=avpicture_get_size(PIX_FMT_RGB24, pCodecCtx->width,
pCodecCtx->height);
LOGI("numBytes %d",numBytes);
buffer=(uint8_t *)av_malloc(numBytes*sizeof(uint8_t));
// Assign appropriate parts of buffer to image planes in pFrameRGB
// Note that pFrameRGB is an AVFrame, but AVFrame is a superset
// of AVPicture
avpicture_fill((AVPicture *)pFrameRGB, buffer, PIX_FMT_RGB24,
pCodecCtx->width, pCodecCtx->height);
// Read frames and save first five frames to disk
i=0;
while(av_read_frame(pFormatCtx, &packet)>=0) {
// Is this a packet from the video stream?
if(packet.stream_index==videoStream) {
// Decode video frame
avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished,&packet);
//packet.data, packet.size);
// Did we get a video frame?
if(frameFinished) {
// Convert the image from its native format to RGB
/*Temporarily down
*
* img_convert((AVPicture *)pFrameRGB, PIX_FMT_RGB24,
(AVPicture*)pFrame, pCodecCtx->pix_fmt, pCodecCtx->width,pCodecCtx->height);*/
// Save the frame to phone memory
LOGI("Saving Frame\n");
SaveFrame(pFrameRGB, pCodecCtx->width, pCodecCtx->height, ++i);
LOGI("After Saving Frame\n");
}
}
// Free the packet that was allocated by av_read_frame
av_free_packet(&packet);
}
// Free the RGB image
av_free(buffer);
av_free(pFrameRGB);
// Free the YUV frame
av_free(pFrame);
// Close the codec
avcodec_close(pCodecCtx);
// Close the video file
av_close_input_file(pFormatCtx);
return 0;
}
编译代码后,我在日志中得到了这个,
07-04 10:58:38.961: D/dalvikvm(1010): Trying to load lib /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so 0x4051e878
07-04 10:58:38.971: D/dalvikvm(1010): Added shared lib /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so 0x4051e878
07-04 10:58:38.971: D/dalvikvm(1010): No JNI_OnLoad found in /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so 0x4051e878, skipping init
07-04 10:58:39.011: I/System.out(1010): Creating Engine
07-04 10:58:39.011: I/mylib(1010): initiated
07-04 10:58:39.011: I/System.out(1010): Decoding Video
07-04 10:58:39.011: I/System.out(1010): passing video::/sdcard/NativeMedia.ts
07-04 10:58:39.101: W/dalvikvm(231): disableGcForExternalAlloc: false
07-04 10:58:39.121: I/DEBUG(71): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
07-04 10:58:39.121: I/DEBUG(71): Build fingerprint: 'htc_asia_india/htc_icong/icong:2.3.3/GRI40/68450.5:user/release-keys'
07-04 10:58:39.121: I/DEBUG(71): pid: 1010, tid: 1010 >>> ru.dzakhov.ffmpeg.test <<<
07-04 10:58:39.121: I/DEBUG(71): signal 4 (SIGILL), code 1 (ILL_ILLOPC), fault addr 8102de90
07-04 10:58:39.121: I/DEBUG(71): r0 0000ac28 r1 40521b98 r2 40526340 r3 42157cc8
07-04 10:58:39.121: I/DEBUG(71): r4 bee7d368 r5 00000004 r6 40521b98 r7 42157c88
07-04 10:58:39.121: I/DEBUG(71): r8 bee7d348 r9 42157c80 10 42157c6c fp 42f0f04c
07-04 10:58:39.121: I/DEBUG(71): ip 8102de91 sp bee7d348 lr 80018378 pc 8102de90 cpsr a0000030
07-04 10:58:39.121: I/DEBUG(71): d0 4140000041600000 d1 3ff0000041680000
07-04 10:58:39.121: I/DEBUG(71): d2 bf80000000000000 d3 0000000000000000
07-04 10:58:39.121: I/DEBUG(71): d4 0000000000000000 d5 3ff000003f800000
07-04 10:58:39.121: I/DEBUG(71): d6 bff000003f800000 d7 4160000000000000
07-04 10:58:39.121: I/DEBUG(71): d8 0000000000000000 d9 0000000000000000
07-04 10:58:39.121: I/DEBUG(71): d10 0000000000000000 d11 0000000000000000
07-04 10:58:39.121: I/DEBUG(71): d12 0000000000000000 d13 0000000000000000
07-04 10:58:39.121: I/DEBUG(71): d14 0000000000000000 d15 0000000000000000
07-04 10:58:39.121: I/DEBUG(71): scr 20000012
07-04 10:58:39.221: I/DEBUG(71): #00 pc 0002de90 /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so
07-04 10:58:39.221: I/DEBUG(71): #01 pc 0004f13c /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #02 pc 0001d584 /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #03 pc 00022b8c /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #04 pc 00021a80 /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #05 pc 0006060a /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #06 pc 0006828e /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #07 pc 0001d584 /system/lib/libdvm.so
07-04 10:58:39.221: I/DEBUG(71): #08 pc 00022b8c /system/lib/libdvm.so
07-04 10:58:39.231: I/DEBUG(71): #09 pc 00021a80 /system/lib/libdvm.so
07-04 10:58:39.231: I/DEBUG(71): #10 pc 0006045c /system/lib/libdvm.so
07-04 10:58:39.231: I/DEBUG(71): #11 pc 0004c430 /system/lib/libdvm.so
07-04 10:58:39.231: I/DEBUG(71): #12 pc 00037638 /system/lib/libandroid_runtime.so
07-04 10:58:39.231: I/DEBUG(71): #13 pc 00038456 /system/lib/libandroid_runtime.so
07-04 10:58:39.231: I/DEBUG(71): #14 pc 00008ca2 /system/bin/app_process
07-04 10:58:39.231: I/DEBUG(71): #15 pc 00014f24 /system/lib/libc.so
07-04 10:58:39.231: I/DEBUG(71): code around pc:
07-04 10:58:39.231: I/DEBUG(71): 8102de70 003d9cd0 00000408 0029e598 0029e5de
07-04 10:58:39.231: I/DEBUG(71): 8102de80 0029e5d8 0029e5d8 0029e5cc 0029e5c8
07-04 10:58:39.231: I/DEBUG(71): 8102de90 4ff0e92d b0994604 f0004615 6823f945
07-04 10:58:39.231: I/DEBUG(71): 8102dea0 46294620 32a4f8d3 47982200 46044f81
07-04 10:58:39.231: I/DEBUG(71): 8102deb0 a8172300 22004621 9300447f f9c0f060
07-04 10:58:39.231: I/DEBUG(71): code around lr:
07-04 10:58:39.231: I/DEBUG(71): 80018358 3497c004 3488c004 3afffff9 e2888004
07-04 10:58:39.231: I/DEBUG(71): 80018368 eafffff9 e899000c e594c008 e12fff3c
07-04 10:58:39.231: I/DEBUG(71): 80018378 e3550000 1594c00c 188c0003 e914a3f0
07-04 10:58:39.231: I/DEBUG(71): 80018388 e1a05e22 e5946004 e3a02000 e4d6c001
07-04 10:58:39.231: I/DEBUG(71): 80018398 e35c0000 0a000007 e2822001 e35c0044
07-04 10:58:39.231: I/DEBUG(71): stack:
07-04 10:58:39.231: I/DEBUG(71): bee7d308 000001b4
07-04 10:58:39.231: I/DEBUG(71): bee7d30c c0000000
07-04 10:58:39.231: I/DEBUG(71): bee7d310 80018540 /system/lib/libdvm.so
07-04 10:58:39.231: I/DEBUG(71): bee7d314 0000cf98
07-04 10:58:39.231: I/DEBUG(71): bee7d318 42157c6c
07-04 10:58:39.231: I/DEBUG(71): bee7d31c afd139d9 /system/lib/libc.so
07-04 10:58:39.231: I/DEBUG(71): bee7d320 0002de91
07-04 10:58:39.241: I/DEBUG(71): bee7d324 0000000e
07-04 10:58:39.241: I/DEBUG(71): bee7d328 80018540 /system/lib/libdvm.so
07-04 10:58:39.241: I/DEBUG(71): bee7d32c 00000070
07-04 10:58:39.241: I/DEBUG(71): bee7d330 42157c6c
07-04 10:58:39.241: I/DEBUG(71): bee7d334 00238100
07-04 10:58:39.241: I/DEBUG(71): bee7d338 00000000
07-04 10:58:39.241: I/DEBUG(71): bee7d33c 00000000
07-04 10:58:39.241: I/DEBUG(71): bee7d340 df002777
07-04 10:58:39.241: I/DEBUG(71): bee7d344 e3a070ad
07-04 10:58:39.241: I/DEBUG(71): #00 bee7d348 423692b4
07-04 10:58:39.241: I/DEBUG(71): bee7d34c 0000cf98
07-04 10:58:39.241: I/DEBUG(71): bee7d350 40521b98
07-04 10:58:39.241: I/DEBUG(71): bee7d354 8102de91 /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so
07-04 10:58:39.241: I/DEBUG(71): bee7d358 80018540 /system/lib/libdvm.so
07-04 10:58:39.241: I/DEBUG(71): bee7d35c 0000cf98
07-04 10:58:39.241: I/DEBUG(71): bee7d360 bee7d368
07-04 10:58:39.241: I/DEBUG(71): bee7d364 800499df /system/lib/libdvm.so
07-04 10:58:39.241: I/DEBUG(71): bee7d368 42157c80
07-04 10:58:39.241: I/DEBUG(71): bee7d36c 42d58795
07-04 10:58:39.241: I/DEBUG(71): bee7d370 8102de91 /data/data/ru.dzakhov.ffmpeg.test/lib/libmylib.so
07-04 10:58:39.241: I/DEBUG(71): bee7d374 bee7d418
07-04 10:58:39.241: I/DEBUG(71): bee7d378 00016de0
07-04 10:58:39.241: I/DEBUG(71): bee7d37c 0000ac28
07-04 10:58:39.241: I/DEBUG(71): bee7d380 00000001
07-04 10:58:39.241: I/DEBUG(71): bee7d384 bee7d418
07-04 10:58:39.241: I/DEBUG(71): bee7d388 42157c80
07-04 10:58:39.241: I/DEBUG(71): bee7d38c 40521b98
07-04 10:58:39.241: I/DEBUG(71): bee7d390 423692b4
07-04 10:58:39.241: I/DEBUG(71): bee7d394 800499a1 /system/lib/libdvm.so
07-04 10:58:39.241: I/DEBUG(71): bee7d398 42157c80
07-04 10:58:39.241: I/DEBUG(71): bee7d39c 8004f13f /system/lib/libdvm.so
07-04 10:58:39.241: I/DEBUG(71): #01 bee7d3a0 00000002
07-04 10:58:39.251: I/DEBUG(71): bee7d3a4 0000000e
07-04 10:58:39.251: I/DEBUG(71): bee7d3a8 bee7d418
07-04 10:58:39.251: I/DEBUG(71): bee7d3ac 0000cf98
07-04 10:58:39.251: I/DEBUG(71): bee7d3b0 400198b8
07-04 10:58:39.251: I/DEBUG(71): bee7d3b4 42d5861c
07-04 10:58:39.251: I/DEBUG(71): bee7d3b8 42157c98
07-04 10:58:39.251: I/DEBUG(71): bee7d3bc bee7d410
07-04 10:58:39.251: I/DEBUG(71): bee7d3c0 40521b98
07-04 10:58:39.251: I/DEBUG(71): bee7d3c4 8001d588 /system/lib/libdvm.so
无法理解到底是什么问题?这里使用了 SaveFrame 函数,看起来像,
void SaveFrame(AVFrame *pFrame, int width, int height, int iFrame) {
FILE *pFile;
char szFilename[32];
int y;
// Open file
LOGI("Opening file!");
sprintf(szFilename, "frame%d.ppm", iFrame);
pFile=fopen(szFilename, "wb");
if(pFile==NULL)
return;
// Write header
fprintf(pFile, "P6\n%d %d\n255\n", width, height);
//LOGI("width::"+width+"Height::"+height);
// Write pixel data
for(y=0; y<height; y++){
LOGI("writing file");
fwrite(pFrame->data[0]+y*pFrame->linesize[0], 1, width*3, pFile);
}
// Close file
fclose(pFile);
}
在日志中我没有得到我放在代码中的任何日志!
请帮帮我,
谢谢
最佳答案
查看导致问题的指令...
$ rasm2 -a arm -d 4ff0e92dstclcs 0, cr15, [r9, #316]!
stc指令documentation .
搜索它,可能无法从用户空间执行此操作:Getting ILL_ILLOPC (illegal opcode) when trying to execute MRC or MCR instructions on Android
那么,这应该不是你的问题,对吧? :)
尝试仅在 native 中打印一些日志消息(或至少在 av_register_all() 之前这样做),不要添加任何其他额外的库,看看你是否做对了。
关于android - 使用 FFMpeg for android 解码视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11322952/
我有以下 json: {"results": [{"columns":["room_id","player_name","player_ip"], "types":["integer","text
我在 go 中获取格式不一致的 JSON 文件。例如,我可以有以下内容: {"email": "\"blah.blah@blah.com\""} {"email": "robert@gmail.com
JavaScript中有JSON编码/解码base64编码/解码函数吗? 最佳答案 是的,btoa() 和 atob() 在某些浏览器中可以工作: var enc = btoa("this is so
我在其中一个项目中使用了 Encog,但在解码 One-Of Class 时卡住了。该字段的规范化操作之一是 NormalizationAction.OneOf,它具有三个输出。当我评估时,我想解码预
在我的 previous question关于使用 serialize() 创建对象的 CSV 我从 jmoy 那里得到了一个很好的答案,他推荐了我的序列化文本的 base64 编码。这正是我要找的。
有些事情让我感到困惑 - 为什么 this image在每个浏览器中显示不同? IE9(和 Windows 照片查看器)中的图像: Firefox(和 Photoshop)中的图像: Chrome(和
是否可以在不知道它的类型( JAXBContext.newInstance(clazz) )的情况下解码一个类,或者什么是测试即将到来的正确方法? 我确实收到了从纯文本中解码的消息 - 字符串 传入的
我正在尝试使用 openSSL 库进行 Base64 解码,然后使用 CMS 来验证签名。 下面的代码总是将缓冲区打印为 NULL。 char signed_data[] = "MIIO"; int
我有一个带有 SEL 类型实例变量的类,它是对选择器的引用。在encodeWithCoder/initWithCoder中,如何编码/解码这种类型的变量? 最佳答案 您可以使用 NSStringFro
var url = 'http://www.googleapis.com/customsearch/v1?q=foo&searchType=image'; window.fetch(url) .t
我想知道Android 2.2、2.3和3,4支持的音频/视频格式列表。我也想知道哪些Android版本支持视频编码和解码。我经历了this link,但是关于编码和解码我并不清楚。 任何人的回答都是
我在其中一个项目中使用 Encog,但在解码 One-Of 类时遇到了困难。该字段的规范化操作之一是 NormalizationAction.OneOf,它具有三个输出。当我评估时,我想解码预测值。如
我正在尝试解码现有的 xml 文件,以便我可以正确处理数据,但 XML 结构看起来很奇怪。下面是 xml 示例以及我创建的对象。 11 266 AA1001 1
对 unicode 字符进行 URL 编码的常用方法是将其拆分为 2 %HH 代码。 (\u4161 => %41%61) 但是,unicode在解码时是如何区分的呢?您如何知道 %41%61 是 \
我正在尝试将 json 字符串解码为 Map。 我知道有很多这样的问题,但我需要非常具体的格式。例如,我有 json 字符串: { "map": { "a": "b",
我有一个查询,我认为需要像这样(解码会更大) SELECT firstName, lastName, decode(mathMrk, 80, 'A', mathMrk) as decodeMat
我知道PHP函数encode()和decode(),它们对我来说工作得很好,但我想在url中传递编码字符串,但encode确实返回特殊字符,如“=”、“”' “等等...... 这显然会破坏我的脚本,
我必须解码 Basic bW9uTG9naW46bW9uTW90RGVQYXNz 形式的 http 请求的授权 header 当我解码它时online ,我得到了正确的结果 monLogin:monM
这个问题已经有答案了: Decode Base64 data in Java (21 个回答) 已关闭 8 年前。 我想知道使用哪个库进行 Base64 编码/解码?我需要此功能足够稳定以供生产使用。
我正在尝试从 Arduino BT 解码 []byte,我的连接完美,问题是当我尝试解码数组时。我得到的只是这个字符�(发送的字节数相同)我认为问题出在解码上。我尝试使用 ASCII 字符集,但仍然存
我是一名优秀的程序员,十分优秀!