#984 closed defect (worksforme)
avio_alloc_context and callback on write
Reported by: | Denis | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | avformat |
Version: | unspecified | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
For my application is essential use the callbacks. I have understood how to use callback on decoding but not on encoding.
If is right, on order to obtain an encoded file from a sequence of images the steps are:
1) initialize AVOutputFormat
2) initialize AVFormatContext and referred it to AVOutputFormat
3) use avio_open for open the output file
4) initialize AVStream
5) initialize AVCodec
6) using avcodec_encode_video, AVPacket and av_interleaved_write_frame is possible to store the inage into the output file.
That works. I can produce webm, mp4 and mpg file. But now the goal is to modify the sequence in order to use callback on write event.
I have modified the sequence like this
0) AVIOContext= avio_alloc_context(pBuffer, BUFFERSIZE, 0, this, NULL, WritePacket, NULL);
1) initialize AVOutputFormat
2) initialize AVFormatContext and referred it to AVOutputFormat and AVIOContext
"pAVFormatContext->oformat= pAVOutputFormat;"
"pAVFormatContext->pb= pAVIOContext;"
3) remove avio_open for open the output file
4) initialize AVStream
5) initialize AVCodec
6) using avcodec_encode_video, AVPacket and av_interleaved_write_frame.
but does not work with all codecs. For example works using mpeg or webm but not with mp4 (x264) The WritePacket callback is always called but the produced mp4 file is not readable from mplayer or cvlc. The webm or mpg files work well instead.
Attachments (2)
Change History (8)
by , 13 years ago
Attachment: | qthcamera.cpp added |
---|
comment:1 by , 13 years ago
Priority: | critical → normal |
---|
comment:3 by , 13 years ago
After a lot of time on studying FFmpeg I think there is something that does
not works correctly. In order to produce a file you can use avio_open or
avio_open_dyn_buf functions. But these functions are used for obtain a file.
There is another approach, a callback using avio_alloc_context function. For
me this approach is a lot important but does not works correctly!
How you can try by using the attached source code you can obtain an avi file
correctly but if you try mp4 or webm the produced files can not be played with
vlc or other.
With ogg the program goes to crash.
Is my code wrong or is a problem of FFmpeg?
See the C source for a quick check.
I hope you can help me.
comment:4 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
You do not provide a seek function for the avio context, so completely unsurprisingly the formats that are not "naturally" streamable fail.
In addition, you do not even set the "streamable" AVIO context member to indicate that streaming will not be possible, so even for those formats that can be streamed and FFmpeg implemented that feature properly wouldn't work correctly.
However I cannot reproduce the crash with ogg using:
ffmpeg -i some_file -f ogg - > test.ogg
Without a proper backtrace and valgrind log I'm not going to debug this further than that.
comment:5 by , 13 years ago
Resolution: | fixed → worksforme |
---|
comment:6 by , 13 years ago
Thanks for your quickly reply. Where I can found the list of the streamable formats and some documentation? Is my approach completely wrong or with some correction can works? Have you got an example on using callback?
Thanks thousand.
It's a thread that grab images with opencv and uses ffmpeg to generate a mp4 file