In GDB, I get:

Program received signal SIGSEGV, Segmentation fault.
0x00007ffff705f210 in avcodec_encode_video2 () from /usr/lib64/libavcodec.so.56


if your distro doesn't offer ffmpeg with debug symbols, I suggest building ffmpeg with debug symbols enabled. then link your code with it. If you then run your app in gdb, the backtrace (type in 'bt' and hit enter after the SIGSEGV is emitted) and may contain the line of code in ffmpeg that yielded the segfault. with this, you might be able to find the root cause of this problem.

out of curiosity: what distro do you use, that has problems with valgrind?! I never heard something along those lines.

Best,
Peter
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user

Reply via email to