3 * Copyright (c) 2005 Marcus Engene myfirstname(at)mylastname.se
5 * The watermarkpicture works like this. (Assuming colorintencities 0..0xff)
7 * If mask color is 0x80, no change to original frame.
8 * If mask color is < 0x80 the abs difference is subtracted from frame. If
9 * result < 0, result = 0
10 * If mask color is > 0x80 the abs difference is added to frame. If result
11 * > 0xff, result = 0xff
13 * This way a mask that is visible both in light pictures and in dark can be
14 * made (fex by using a picture generated by gimp and the bump map tool).
16 * An example watermark file is at
17 * http://engene.se/ffmpeg_watermark.gif
19 * This library is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU Lesser General Public
21 * License as published by the Free Software Foundation; either
22 * version 2 of the License, or (at your option) any later version.
24 * This library is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27 * Lesser General Public License for more details.
29 * You should have received a copy of the GNU Lesser General Public
30 * License along with this library; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
42 #include "framehook.h"
49 /* get_watermark_picture() variables */
50 AVFormatContext
*pFormatCtx
;
54 AVCodecContext
*pCodecCtx
;
61 AVInputFormat
*file_iformat
;
67 int get_watermark_picture(ContextInfo
*ci
, int cleanup
);
70 /****************************************************************************
72 ****************************************************************************/
73 void Release(void *ctx
)
76 ci
= (ContextInfo
*) ctx
;
78 if (ci
) get_watermark_picture(ci
, 1);
85 /****************************************************************************
87 ****************************************************************************/
88 int Configure(void **ctxp
, int argc
, char *argv
[])
93 if (0 == (*ctxp
= av_mallocz(sizeof(ContextInfo
)))) return -1;
94 ci
= (ContextInfo
*) *ctxp
;
98 // Struct is mallocz:ed so no need to reset.
100 while ((c
= getopt(argc
, argv
, "f:")) > 0) {
103 strncpy(ci
->filename
, optarg
, 1999);
104 ci
->filename
[1999] = 0;
107 av_log(NULL
, AV_LOG_DEBUG
, "Unrecognized argument '%s'\n", argv
[optind
]);
113 if (0 == ci
->filename
[0]) return -1;
116 return get_watermark_picture(ci
, 0);
122 /****************************************************************************
123 * Why is this a void returning functions? I want to be able to go wrong!
124 ****************************************************************************/
125 void Process(void *ctx
,
127 enum PixelFormat pix_fmt
,
132 ContextInfo
*ci
= (ContextInfo
*) ctx
;
135 AVPicture
*pict
= picture
;
146 uint32_t *p_pixel
= 0;
155 if (pix_fmt
!= PIX_FMT_RGBA32
) {
158 size
= avpicture_get_size(PIX_FMT_RGBA32
, src_width
, src_height
);
159 buf
= av_malloc(size
);
161 avpicture_fill(&picture1
, buf
, PIX_FMT_RGBA32
, src_width
, src_height
);
162 if (img_convert(&picture1
, PIX_FMT_RGBA32
,
163 picture
, pix_fmt
, src_width
, src_height
) < 0) {
170 /* Insert filter code here */ /* ok */
173 if (0 > get_watermark_picture(ci
, 0)) {
176 // These are the three original static variables in the ffmpeg hack.
177 pFrameRGB
= ci
->pFrameRGB
;
178 xm_size
= ci
->x_size
;
179 ym_size
= ci
->y_size
;
181 // I'll do the *4 => <<2 crap later. Most compilers understand that anyway.
182 // According to avcodec.h PIX_FMT_RGBA32 is handled in endian specific manner.
183 for (y
=0; y
<src_height
; y
++) {
184 offs
= y
* (src_width
* 4);
185 offsm
= (((y
* ym_size
) / src_height
) * 4) * xm_size
; // offsm first in maskline. byteoffs!
186 for (x
=0; x
<src_width
; x
++) {
187 mpoffs
= offsm
+ (((x
* xm_size
) / src_width
) * 4);
188 p_pixel
= (uint32_t *)&((pFrameRGB
->data
[0])[mpoffs
]);
190 p_pixel
= (uint32_t *)&((pict
->data
[0])[offs
]);
192 // pixelm = *((uint32_t *)&(pFrameRGB->data[mpoffs]));
193 pixel_meck
= pixel
& 0xff000000;
196 tmp
= (int)((pixel
>> 16) & 0xff) + (int)((pixelm
>> 16) & 0xff) - 0x80;
197 if (tmp
> 255) tmp
= 255;
198 if (tmp
< 0) tmp
= 0;
199 pixel_meck
|= (tmp
<< 16) & 0xff0000;
201 tmp
= (int)((pixel
>> 8) & 0xff) + (int)((pixelm
>> 8) & 0xff) - 0x80;
202 if (tmp
> 255) tmp
= 255;
203 if (tmp
< 0) tmp
= 0;
204 pixel_meck
|= (tmp
<< 8) & 0xff00;
206 tmp
= (int)((pixel
>> 0) & 0xff) + (int)((pixelm
>> 0) & 0xff) - 0x80;
207 if (tmp
> 255) tmp
= 255;
208 if (tmp
< 0) tmp
= 0;
209 pixel_meck
|= (tmp
<< 0) & 0xff;
213 //pixel_meck = pixel & 0xff000000;
214 //pixel_meck |= (pixelm & 0x00ffffff);
216 *p_pixel
= pixel_meck
;
225 if (pix_fmt
!= PIX_FMT_RGBA32
) {
226 if (img_convert(picture
, pix_fmt
,
227 &picture1
, PIX_FMT_RGBA32
, src_width
, src_height
) < 0) {
235 /****************************************************************************
236 * When cleanup == 0, we try to get the next frame. If no next frame, nothing
239 * This code follows the example on
240 * http://www.inb.uni-luebeck.de/~boehme/using_libavcodec.html
243 ****************************************************************************/
244 int get_watermark_picture(ContextInfo
*ci
, int cleanup
)
246 if (1 == ci
->is_done
&& 0 == cleanup
) return 0;
248 // Yes, *pFrameRGB arguments must be null the first time otherwise it's not good..
249 // This block is only executed the first time we enter this function.
250 if (0 == ci
->pFrameRGB
&&
255 * The last three parameters specify the file format, buffer size and format
256 * parameters; by simply specifying NULL or 0 we ask libavformat to auto-detect
257 * the format and use a default buffer size. (Didn't work!)
259 if (av_open_input_file(&ci
->pFormatCtx
, ci
->filename
, NULL
, 0, NULL
) != 0) {
261 // Martin says this should not be necessary but it failed for me sending in
262 // NULL instead of file_iformat to av_open_input_file()
263 ci
->i
= strlen(ci
->filename
);
265 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() No filename to watermark vhook\n");
269 if (ci
->filename
[ci
->i
] == '.') {
275 ci
->p_ext
= &(ci
->filename
[ci
->i
]);
276 ci
->file_iformat
= av_find_input_format (ci
->p_ext
);
277 if (0 == ci
->file_iformat
) {
278 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Really failed to find iformat [%s]\n", ci
->p_ext
);
281 // now continues the Martin template.
283 if (av_open_input_file(&ci
->pFormatCtx
, ci
->filename
, ci
->file_iformat
, 0, NULL
)!=0) {
284 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to open input file [%s]\n", ci
->filename
);
290 * This fills the streams field of the AVFormatContext with valid information.
292 if(av_find_stream_info(ci
->pFormatCtx
)<0) {
293 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to find stream info\n");
298 * As mentioned in the introduction, we'll handle only video streams, not audio
299 * streams. To make things nice and easy, we simply use the first video stream we
303 for(ci
->i
= 0; ci
->i
< ci
->pFormatCtx
->nb_streams
; ci
->i
++)
304 if(ci
->pFormatCtx
->streams
[ci
->i
]->codec
.codec_type
==CODEC_TYPE_VIDEO
)
306 ci
->videoStream
= ci
->i
;
309 if(ci
->videoStream
== -1) {
310 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to find any video stream\n");
314 ci
->st
= ci
->pFormatCtx
->streams
[ci
->videoStream
];
315 ci
->x_size
= ci
->st
->codec
.width
;
316 ci
->y_size
= ci
->st
->codec
.height
;
318 // Get a pointer to the codec context for the video stream
319 ci
->pCodecCtx
= &ci
->pFormatCtx
->streams
[ci
->videoStream
]->codec
;
323 * OK, so now we've got a pointer to the so-called codec context for our video
324 * stream, but we still have to find the actual codec and open it.
326 // Find the decoder for the video stream
327 ci
->pCodec
= avcodec_find_decoder(ci
->pCodecCtx
->codec_id
);
328 if(ci
->pCodec
== NULL
) {
329 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to find any codec\n");
333 // Inform the codec that we can handle truncated bitstreams -- i.e.,
334 // bitstreams where frame boundaries can fall in the middle of packets
335 if (ci
->pCodec
->capabilities
& CODEC_CAP_TRUNCATED
)
336 ci
->pCodecCtx
->flags
|=CODEC_FLAG_TRUNCATED
;
339 if(avcodec_open(ci
->pCodecCtx
, ci
->pCodec
)<0) {
340 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to open codec\n");
344 // Hack to correct wrong frame rates that seem to be generated by some
346 if (ci
->pCodecCtx
->frame_rate
>1000 && ci
->pCodecCtx
->frame_rate_base
==1)
347 ci
->pCodecCtx
->frame_rate_base
=1000;
350 * Allocate a video frame to store the decoded images in.
352 ci
->pFrame
= avcodec_alloc_frame();
356 * The RGB image pFrameRGB (of type AVFrame *) is allocated like this:
358 // Allocate an AVFrame structure
359 ci
->pFrameRGB
=avcodec_alloc_frame();
360 if(ci
->pFrameRGB
==NULL
) {
361 av_log(NULL
, AV_LOG_DEBUG
, "get_watermark_picture() Failed to alloc pFrameRGB\n");
365 // Determine required buffer size and allocate buffer
366 ci
->numBytes
= avpicture_get_size(PIX_FMT_RGBA32
, ci
->pCodecCtx
->width
,
367 ci
->pCodecCtx
->height
);
368 ci
->buffer
= av_malloc(ci
->numBytes
);
370 // Assign appropriate parts of buffer to image planes in pFrameRGB
371 avpicture_fill((AVPicture
*)ci
->pFrameRGB
, ci
->buffer
, PIX_FMT_RGBA32
,
372 ci
->pCodecCtx
->width
, ci
->pCodecCtx
->height
);
374 // TODO loop, pingpong etc?
377 // av_log(NULL, AV_LOG_DEBUG, "get_watermark_picture() Get a frame\n");
378 while(av_read_frame(ci
->pFormatCtx
, &ci
->packet
)>=0)
380 // Is this a packet from the video stream?
381 if(ci
->packet
.stream_index
== ci
->videoStream
)
383 // Decode video frame
384 avcodec_decode_video(ci
->pCodecCtx
, ci
->pFrame
, &ci
->frameFinished
,
385 ci
->packet
.data
, ci
->packet
.size
);
387 // Did we get a video frame?
388 if(ci
->frameFinished
)
390 // Convert the image from its native format to RGBA32
391 img_convert((AVPicture
*)ci
->pFrameRGB
, PIX_FMT_RGBA32
,
392 (AVPicture
*)(ci
->pFrame
), ci
->pCodecCtx
->pix_fmt
, ci
->pCodecCtx
->width
,
393 ci
->pCodecCtx
->height
);
395 // Process the video frame (save to disk etc.)
396 //fprintf(stderr,"banan() New frame!\n");
397 //DoSomethingWithTheImage(ci->pFrameRGB);
402 // Free the packet that was allocated by av_read_frame
403 av_free_packet(&ci
->packet
);
411 // Free the RGB image
412 if (0 != ci
->buffer
) {
416 if (0 != ci
->pFrameRGB
) {
417 av_free(ci
->pFrameRGB
);
422 if (0 != ci
->pCodecCtx
) {
423 avcodec_close(ci
->pCodecCtx
);
427 // Close the video file
428 if (0 != ci
->pFormatCtx
) {
429 av_close_input_file(ci
->pFormatCtx
);
439 void parse_arg_file(const char *filename
)