Commit Graph

392 Commits

Author SHA1 Message Date
popcornmix
481fcfbcf8 Fix some typos found by codespell
See: https://github.com/raspberrypi/userland/pull/299
2016-04-06 19:47:08 +01:00
popcornmix
33a096b436 Merge pull request #294 from ggardet/master
Allow to override VMCS_INSTALL_PREFIX
2016-04-06 16:58:14 +01:00
popcornmix
260168c290 Merge pull request #283 from atupone/master
Fix strict-aliasing
2016-04-06 16:55:00 +01:00
popcornmix
2f805f4ea7 Merge pull request #164 from lurch/patch-1
Fix comment markup typos
2016-04-06 16:51:03 +01:00
popcornmix
c5dc00542e Merge pull request #116 from jipe/master
Fixed variable name error in code example doc
2016-04-06 16:50:13 +01:00
popcornmix
1c5f4075fd Merge pull request #296 from 6by9/PR20160228
Raspivid: Add -pts to save timecodes to file
2016-04-06 16:41:13 +01:00
Phil Elwell
703a2c4b35 dtoverlay: Compile libfdt into libdtovl
Compile the static library libfdt into libdtovl, rather than deferring
its linking to clients of libdtovl.
2016-03-30 13:27:40 +01:00
Phil Elwell
33f6e668bc dtoverlay: Actually use the result of fread...
...because void casts are no longer sufficient on return values marked
with attribute warn_unused_result.

See: https://github.com/raspberrypi/userland/pull/300
     https://github.com/raspberrypi/userland/issues/302
2016-03-30 09:50:31 +01:00
Phil Elwell
964deab3d7 dtoverlay: Fixing numerous compiler nit-picks
See: https://github.com/raspberrypi/userland/pull/300
     https://github.com/raspberrypi/userland/pull/301
     https://github.com/raspberrypi/userland/issues/302
2016-03-30 08:58:44 +01:00
Phil Elwell
e8de525fa4 vchiq_lib: Don't overwrite loop count mid-loop 2016-03-23 14:12:45 +00:00
popcornmix
2f56a2943a MMAL Examples: Some fixups for the Pi tree 2016-03-16 00:34:25 +00:00
popcornmix
930ecc100b dtoverlay: Add makefile updates 2016-03-16 00:32:53 +00:00
popcornmix
e93c382c4e dtoverlay: Add source for libs 2016-03-15 21:52:00 +00:00
popcornmix
84c6c4c0d3 dtoverlay: Add source for dtoverlay utility 2016-03-15 18:55:40 +00:00
popcornmix
8369e39099 Merge pull request #297 from kfitzgerald/raspiyuv-flush
raspiyuv: Flush stdout to ensure image is fully sent
2016-03-05 20:43:41 +00:00
Kevin M Fitzgerald
96ebe93f8b Flush stdout to ensure image is fully sent
Flush stdout when dumping image data over stdout. Without the flush, using signals to stream image data over stdout would result in the missing data, if the buffer didn't fill the 65536 chunk.
2016-03-04 22:42:32 -06:00
Ethanol100
ab71f20531 Raspivid: Add -pts to save timecodes to file
This can be used with mkvmerge:

    raspivid -pts timecodes.txt -o video.h264
    mkvmerge -o video.mkv --timecodes 0:timecodes.txt video.h264

Original commit by ethanol100. Minor mods by 6by9.
2016-02-28 14:17:42 +00:00
Guillaume GARDET
babd8ddb48 Allow to override VMCS_INSTALL_PREFIX 2016-02-18 15:06:28 +01:00
popcornmix
748b2ba611 OpenMax IL: Add warning if OMX_SKIP64BIT is not defined
struct OMX_BUFFERHEADERTYPE does not align a 64bit value
(nTimestamp) to a 64bit boundary. Metaware is fine with this.
Most ARM compilers will add in padding, and then you don't
have the same result.
ARM side can be made to work by adding OMX_SKIP64BIT.
2016-02-16 00:28:46 +00:00
popcornmix
6bdc6fef56 cmake: define PROJECT_APIVER
this helps in compiling components which use packageconfig to poke for
library versions and requiring minimum supported version

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-02-16 00:27:43 +00:00
popcornmix
9a1a28e777 MMAL Examples: Some fixups for the Pi tree 2016-02-16 00:26:43 +00:00
popcornmix
cecb2f6a54 Fix some compiler warnings
See: https://github.com/raspberrypi/userland/pull/290
2016-02-16 00:26:17 +00:00
popcornmix
0922eb8e9a hello_triangle: Free all resources on exit 2016-02-16 00:23:16 +00:00
popcornmix
17e947740a Fix typos in various headers 2016-02-16 00:22:42 +00:00
popcornmix
e5afa6210e mmal: Fix warnings due to error types
See: https://github.com/raspberrypi/userland/pull/290
2016-02-16 00:11:09 +00:00
popcornmix
dbd8c26735 mmal: Remove unwanted loop increment from body of code
See: https://github.com/raspberrypi/userland/pull/292
2016-02-16 00:09:20 +00:00
Alfredo Tupone
b7c0539f19 Fix strict-aliasing 2016-02-04 21:31:06 +01:00
popcornmix
2a4af2192c Merge pull request #287 from jasaw/fix_warnings
RaspiStill: Fix compiler warnings
2016-02-02 21:34:59 +00:00
popcornmix
0863709b9f Update copyright 2016-02-01 21:07:02 +00:00
popcornmix
190bf8cb4b cmake: Add -marm for building with generic toolchain 2016-02-01 21:06:24 +00:00
popcornmix
f799ee0ba2 Fix typos in various headers
See: https://github.com/raspberrypi/firmware/pull/518
2016-02-01 21:05:12 +00:00
Joo Aun Saw
cd6da13b74 RaspiStill: fixed const char warning 2016-01-29 14:33:39 +11:00
Joo Aun Saw
51fdc9c288 RaspiStill: fixed isdigit warning 2016-01-29 14:24:33 +11:00
popcornmix
10e49b3759 Merge pull request #282 from 6by9/PR20160114
Add a flag to raspistill to start the frame number on something other…
2016-01-15 18:23:40 +00:00
Hyrum Wright
2382459844 Add a flag to raspistill to start the frame number on something other than 0.
This allows restarting raspistill without overwriting existing images.
2016-01-14 22:39:21 +00:00
popcornmix
35e4a8353b Merge pull request #280 from TheSin-/master
GCC5 fixes
2016-01-07 18:03:10 +00:00
Justin F. Hallett
7340e8f020 Fix for format security errors in gcc5 2016-01-07 10:43:45 -07:00
Justin F. Hallett
352575718d Fix a maybe uninitialized warning in gcc5 2016-01-07 10:42:29 -07:00
popcornmix
aa66cccc9a Merge pull request #279 from 6by9/PR20160105
Fixes for #34 and #142
2016-01-07 11:45:42 +00:00
Dave Stevenson
1d2a203de2 Raspistill: Ensure filename doesn't contain invalid % expansions
https://github.com/raspberrypi/userland/issues/142
Check that the output filename does not include %<char>
other than %% or %d as it is fed into sprintf for adding
the timelapse frame number.
2016-01-06 22:31:15 +00:00
Dave Stevenson
56963917df RaspiCamControl: State EV step size
https://github.com/raspberrypi/userland/issues/34
Step size is 1/6ths to support either 1/3rds or 1/2 steps.
2016-01-05 22:14:04 +00:00
popcornmix
95cd3f6b1d Merge pull request #277 from 6by9/PR20151230
Various open issue fixes
2016-01-01 11:51:45 +00:00
popcornmix
3c48a00f88 Merge pull request #276 from 6by9/PR20151222
MMAL Examples: Some fixups for the Pi tree
2015-12-30 23:59:59 +00:00
Dave Stevenson
e0ecdb98a5 VCOS: Silence compiler warnings due to missing functions on pthreads
Some functions defined as inline but not inlined.
Some functions missing from the implementation.
Shuts up a number of comiler warnings.

https://github.com/raspberrypi/userland/issues/220
2015-12-30 23:54:42 +00:00
Dave Stevenson
c34da352cb Raspicam: Send help text to stdout
All text was going to stderr as output data could be
sent to stdout. Send help text to stdout so things
like less will work.

https://github.com/raspberrypi/userland/issues/244
2015-12-30 23:08:51 +00:00
Dave Stevenson
f046bb4497 Raspicam: Remove RaspiCamDocs.odt as out of date
https://github.com/raspberrypi/userland/issues/236
2015-12-30 22:59:03 +00:00
Dave Stevenson
aaefc391ff Raspistill: Correct help text for DateTime (year not included)
Year is not included in the filename as the 32 bit integer would
overflow. Not updating to a 64bit int as the string format is
passed in from the client, so would break compatibility.

https://github.com/raspberrypi/userland/issues/274
2015-12-30 22:55:51 +00:00
Dave Stevenson
55f6f35bb5 MMAL Examples: Some fixups for the Pi tree
None of the examples linked against mmal_vc_client
or bcm_host, so failed to find any VC components.

https://github.com/raspberrypi/userland/issues/275
2015-12-22 22:53:41 +00:00
popcornmix
cfa3df1420 video_decode: Provide ability to limit the number of callback structures used
See: https://github.com/raspberrypi/firmware/issues/496
2015-12-08 19:00:06 +00:00
popcornmix
9b55f905d1 IL ISP component support 2015-12-08 19:00:06 +00:00